summaryrefslogtreecommitdiffstats
path: root/editor/project_settings_editor.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* One Copyright Update to rule them allRémi Verschelde2023-01-051-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".
* Fix closing project setting window with ESC while listening for inputMarkus Sauermann2022-12-211-0/+10
| | | | | This is done by disallowing ESC to be used for closing the window while the filter-LineEdit is focused.
* Add feature tags to signify engine float precisionMikael Hermansson2022-12-071-0/+2
|
* Allow specifying a prefix to automatically detect library files for ↵Gilles Roudière2022-12-011-2/+4
| | | | gdextension exports
* Unify usage of undo_redo in editorkobewi2022-11-021-3/+8
|
* Unify usage of GLOBAL/EDITOR_GETkobewi2022-10-181-4/+4
|
* Only show named layers in layer menuHaoyu Qiu2022-10-081-1/+6
|
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-3/+3
| | | | change warnings=all to use /W4.
* Split `action_map_editor` file into one file per class it contained.Eric M2022-10-061-0/+1
| | | | | | * ActionMapEditor * EventListenerLineEdit * InputEventConfigurationDialog
* Fix key mapping changes when moving from macOS to other platformbruvzg2022-09-071-1/+1
| | | | | Removes separate `Command` key (use `Meta` instead). Adds an event flag to automatically remap `Command` <-> `Control` (cannot be set alongside `Control` or `Meta`).
* Improve naming of theme properties throughout GUI codeYuri Sizov2022-09-061-1/+1
| | | | | | | | | | | | | | Rename ItemList's bg -> panel Rename ItemList's bg_focus -> focus Rename ProgressBar's bg -> background Rename ProgressBar's fg -> fill Rename Tree's bg -> panel Rename Tree's bg_focus -> focus Rename ScrollContainer's bg -> panel Rename FileDialog's *_icon_modulate -> *_icon_color Rename FileDialog's files_disabled -> file_disabled_color Rename CheckButton's on/off -> checked/unchecked Rename check_v_adjust -> check_v_offset
* Revert "Remove NOTIFICATION_ENTER_TREE when paired with ↵Rémi Verschelde2022-08-291-15/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTIFICATION_THEME_CHANGED" This reverts commit 4b817a565cab8af648c88cfc7ab6481e86ee3625. Fixes #64988. Fixes #64997. This caused several regressions (#64988, #64997, https://github.com/godotengine/godot/issues/64997#issuecomment-1229970605) which point at a flaw in the current logic: - `Control::NOTIFICATION_ENTER_TREE` triggers a *deferred* notification with `NOTIFCATION_THEME_CHANGED` as introduced in #62845. - Some classes use their `THEME_CHANGED` to cache theme items in member variables (e.g. `style_normal`, etc.), and use those member variables in `ENTER_TREE`, `READY`, `DRAW`, etc. Since the `THEME_CHANGE` notification is now deferred, they end up accessing invalid state and this can lead to not applying theme properly (e.g. for EditorHelp) or crashing (e.g. for EditorLog or CodeEdit). So we need to go back to the drawing board and see if `THEME_CHANGED` can be called earlier so that the previous logic still works? Or can we refactor all engine code to make sure that: - `ENTER_TREE` and similar do not depend on theme properties cached in member variables. - Or `THEME_CHANGE` does trigger a general UI update to make sure that any bad theme handling in `ENTER_TREE` and co. gets fixed when `THEME_CHANGE` does arrive for the first time. But that means having a temporary invalid (and possibly still crashing) state, and doing some computations twice which might be heavy (e.g. `EditorHelp::_update_doc()`).
* Remove NOTIFICATION_ENTER_TREE when paired with NOTIFICATION_THEME_CHANGEDAaron Record2022-08-271-20/+15
|
* Add per-scene UndoRedokobewi2022-08-221-2/+3
|
* Change translation remaps if files are movedPucklaMotzer092022-08-021-0/+4
|
* Merge pull request #49045 from foxydevloper/hide-custom-settings-non-advancedRémi Verschelde2022-07-311-7/+13
|\
| * Hide altering custom properties in basic modefox2022-07-311-7/+13
| | | | | | | | | | Hides the row for adding and removing custom properties from showing up when advanced mode is disabled.
* | Extract EditorResourceConversionPlugin into its own source files and clean ↵Yuri Sizov2022-07-311-0/+1
|/ | | | up editor includes
* Rename RenderingServer global shader uniform methods to be more explicitHugo Locurcio2022-07-281-4/+4
| | | | | The `global_shader_uniform` name is longer, but it makes it much easier to find the methods when searching in the class reference.
* Split up editor export code into multiple filesAaron Franke2022-07-261-1/+0
|
* Add ok_button_text to AcceptDialog and cancel_button_text to ConfirmationDialogFireForge2022-07-091-1/+1
|
* Implement Running Godot as Movie Writerreduz2022-06-211-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | * Allows running the game in "movie writer" mode. * It ensures entirely stable framerate, so your run can be saved stable and with proper sound (which is impossible if your CPU/GPU can't sustain doing this in real-time). * If disabling vsync, it can save movies faster than the game is run, but if you want to control the interaction it can get difficult. * Implements a simple, default MJPEG writer. This new features has two main use cases, which have high demand: * Saving game videos in high quality and ensuring the frame rate is *completely* stable, always. * Using Godot as a tool to make movies and animations (which is ideal if you want interaction, or creating them procedurally. No other software is as good for this). **Note**: This feature **IS NOT** for capturing real-time footage. Use something like OBS, SimpleScreenRecorder or FRAPS to achieve that, as they do a much better job at intercepting the compositor than Godot can probably do using Vulkan or OpenGL natively. If your game runs near real-time when capturing, you can still use this feature but it will play no sound (sound will be saved directly). Usage: $ godot --write-movie movie.avi [scene_file.tscn] Missing: * Options for configuring video writing via GLOBAL_DEF * UI Menu for launching with this mode from the editor. * Add to list of command line options. * Add a feature tag to override configurations when movie writing (fantastic for saving videos with highest quality settings).
* Merge pull request #61455 from fire-forge/tabRémi Verschelde2022-05-311-0/+1
|\ | | | | Add color contrast to TabContainer backgrounds in the editor
| * Use "odd" style for TabContainers on base BG colorFireForge2022-05-261-0/+1
| | | | | | | | - Use the "odd" style for TabContainers that are on a background with the same color as the default TabContainer background color to add contrast
* | Use consistent casing in editor filter/search barsFireForge2022-05-281-1/+1
|/
* Add a new HashSet templatereduz2022-05-201-1/+1
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Use range iterators for RBSet in most casesAaron Record2022-05-191-2/+2
|
* Replace most uses of Map by HashMapreduz2022-05-161-2/+2
| | | | | | | | | | | | * 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!
* Add a new HashMap implementationreduz2022-05-121-4/+4
| | | | | | | | | | | | | | | | | Adds a new, cleaned up, HashMap implementation. * Uses Robin Hood Hashing (https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing). * Keeps elements in a double linked list for simpler, ordered, iteration. * Allows keeping iterators for later use in removal (Unlike Map<>, it does not do much for performance vs keeping the key, but helps replace old code). * Uses a more modern C++ iterator API, deprecates the old one. * Supports custom allocator (in case there is a wish to use a paged one). This class aims to unify all the associative template usage and replace it by this one: * Map<> (whereas key order does not matter, which is 99% of cases) * HashMap<> * OrderedHashMap<> * OAHashMap<>
* Disallow Callable, Signal and RID in export arrayskobewi2022-05-051-5/+5
|
* Fix some issues found by cppcheck.bruvzg2022-04-061-1/+1
|
* [Input] Add extra `shortcut_input` input processing step to process Unicode ↵bruvzg2022-04-051-2/+2
| | | | character input with Alt / Ctrl modifiers, after processing of shortcuts.
* Make `TabBar/Container` default their alignments to the left instead of centerMichael Alexsander2022-03-171-1/+0
|
* Improve inspector filteringHaoyu Qiu2022-03-181-0/+1
|
* Fix Autoload capitalization inconsistencyHaoyu Qiu2022-03-091-1/+1
|
* Replace some bits of code left to work with the new `TabContainer`Michael Alexsander2022-03-041-1/+1
|
* Make `TabContainer` use `TabBar` internallyMichael Alexsander2022-03-031-1/+1
|
* Convert _notification methods to switch - Chunk CJakob Bouchard2022-02-161-0/+2
|
* Revert "Add missing SNAME macro optimization to all theme methods call"Rémi Verschelde2022-02-081-2/+2
| | | | | | | | This reverts commit a988fad9a092053434545c32afae91ccbdfbe792. As discussed in #57725 and clarified in #57788, `SNAME` is not meant to be used everywhere but only in critical code paths. For theme methods specifically, it was by design that only getters use `SNAME` and not setters.
* Add missing SNAME macro optimization to all theme methods calljmb4622022-02-061-2/+2
|
* Merge pull request #57562 from AnilBK/string-add-containsRémi Verschelde2022-02-031-1/+1
|\ | | | | String: Add contains().
| * String: Add contains().Anilforextra2022-02-041-1/+1
| |
* | Merge pull request #57175 from fire-forge/add-type-iconsRémi Verschelde2022-02-031-10/+12
|\ \ | | | | | | Add type icons to Project Settings, Array, and Dictionary editors
| * | Add type icons to Project Settings, Array, and Dictionary editorsfire5402022-02-031-10/+12
| |/
* / Minor fixes/refactoring of project and editor setting dialogsHendrik Brucker2022-02-011-27/+67
|/
* Merge pull request #56832 from Chaosus/fix_themingYuri Roubinsky2022-01-161-13/+13
|\
| * Fix theming update in several editor classesYuri Roubinsky2022-01-161-13/+13
| |
* | Remove support for PVRTC texture encoding and decodingHugo Locurcio2022-01-141-1/+0
|/ | | | | | | On the only platform where PVRTC is supported (iOS), ETC2 generally supersedes PVRTC in every possible way. The increased memory usage is not really a problem thanks to modern iOS' devices processing power being higher than its Android counterparts.
* Check if action name exists before adding it or renaming an action to itMarcel Admiraal2022-01-121-8/+4
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!