summaryrefslogtreecommitdiffstats
path: root/editor/editor_settings.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-0/+3
|\
| * Make possible to favorite properties in the inspectorMichael Alexsander2024-10-281-0/+3
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Consolidate remembering window settings into single configBrandon Chang2024-10-011-0/+7
|
* Add Advanced Settings switch to Editor Settingskobewi2024-09-171-2/+5
|
* Don't mark settings as modified while loadingkobewi2024-08-171-1/+2
|
* Fix editor settings still displayed when replacedHilderin2024-07-301-0/+3
|
* Use minor version in EditorSettings file namekobewi2024-04-191-0/+2
|
* Add autocompletion for EditorSettings' methodsMicky2024-03-011-0/+4
|
* Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-5/+5
|
* Redesign the graph editor for visual shadersHendrik Brucker2024-02-221-0/+1
|
* Add a network mode setting to bring the editor offlineYuri Sizov2024-01-301-0/+5
| | | | | | | | | This PR also adds default font styles for RichTextLabels in the editor, and improves the introduction dialog when you don't have any local projects available. The offline mode is implemented in the asset library plugin, alongside some code improvements.
* Improve editor theme generation after the refactorYuri Sizov2024-01-171-2/+0
|
* Load project metadata file only when neededkobewi2023-07-231-0/+2
|
* Extract editor run toolbar into its own componentYuri Sizov2023-04-191-2/+1
| | | | | | | | - Simplify and update its logic. - Simplify EditorScript. - Improve EditorNode and other relevant includes. - Fix scene-based path in the movie writer when reloading a scene.
* Use physical shortcuts for freelook navigation in the editorHakim2023-02-211-4/+4
|
* Fix shortcut reset.bruvzg2023-02-211-0/+1
|
* 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".
* Change Array arguments to TypedArraykobewi2022-09-011-1/+1
|
* Replace Array return types with TypedArraykobewi2022-08-221-1/+1
|
* Make `property_*_revert` methods multilevel and expose them for scriptingYuri Sizov2022-08-181-2/+2
|
* Swap arguments of ResourceSaver.save()kobewi2022-07-291-2/+0
|
* Move editor paths into the EditorPaths classAaron Franke2022-07-291-8/+0
|
* Rename directory for export templates from templates to export_templatesAaron Franke2022-07-221-1/+1
|
* Add a new HashSet templatereduz2022-05-201-1/+2
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-3/+3
| | | | | | | | | | | | * 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!
* Fix some issues found by cppcheck.bruvzg2022-04-061-1/+1
|
* Initialize bools in the headers in editorAaron Franke2022-03-121-2/+2
|
* Added ability to retrieve array of changed settings changed when it is saved.Eric M2022-03-051-0/+5
|
* Editor: Cleanup some includes dependenciesRémi Verschelde2022-02-151-4/+2
| | | | | | | | | | | Removes some unnecessary includes from `editor_node.h`, and instead add those where they're used. Removes unnecessary `editor_node.h` includes in various editor classes. Renames `dynamicfont` to `dynamic_font` in a couple files. Misc cleanup while jumping through that rabbit hole.
* Use EditorFileDialog instead of FileDialog in the project managerHendrik Brucker2022-02-121-1/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Use "enum class" for input enumsAaron Franke2021-11-121-2/+2
|
* Allow shortcuts to have any number of bindings. Updated UI as required.Eric M2021-10-011-0/+2
|
* Added ability to override shortcut definitions for OSX (remove preprocessor ↵Eric M2021-09-221-0/+1
| | | | defines)
* Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-1/+1
| | | | | | | | * `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
* Use Key enum instead of plain integersAaron Franke2021-08-101-1/+1
|
* EditorSettings: Factor code to compute auto display scaleRémi Verschelde2021-06-161-0/+1
| | | | Also fixes typo introduced in https://github.com/godotengine/godot/pull/48597/files#r652636544.
* Refactor editor paths validation in EditorPaths and EditorSettingsRémi Verschelde2021-06-141-1/+0
| | | | | | | | | | - EditorSettings: Ensure that `create()` makes a valid singleton. Fixes #49179, fixes #49450. - EditorPaths: Cleanup code, properly set `paths_valid`. - EditorPaths: Move more paths validation (check, mkdir) from EditorSettings for a better separation of concerns. - EditorPaths: Move EditorFileSystem creation of `.godot/imported` next to other paths.
* Merge pull request #49132 from Calinou/editor-syntax-themes-rename-defaultRémi Verschelde2021-05-311-1/+1
|\ | | | | Rename the bundled text editor themes for consistency with themes
| * Rename the bundled text editor themes for consistency with themesHugo Locurcio2021-05-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | The Adaptive text editor theme is the default, and has therefore been renamed Default for consistency with the Default theme preset. It keeps its automatic dark/light switch status. The Default text editor theme was actually a legacy Godot 2-style theme, so it has been renamed to Godot 2 to match the theme preset. Its background color has been changed to be a constant opaque color, since the new editor theme made the theme look less good on a translucent background. The previous background color on light theme also lacked contrast.
* | Implement shader cachingreduz2021-05-311-7/+1
|/ | | | | | | | | | | | * Shader compilation is now cached. Subsequent loads take less than a millisecond. * Improved game, editor and project manager startup time. * Editor uses .godot/shader_cache to store shaders. * Game uses user://shader_cache * Project manager uses $config_dir/shader_cache * Options to tweak shader caching in project settings. * Editor path configuration moved from EditorSettings to new class, EditorPaths, so it can be available early on (before shaders are compiled). * Reworked ShaderCompilerRD to ensure deterministic shader code creation (else shader may change and cache will be invalidated). * Added shader compression with SMOLV: https://github.com/aras-p/smol-v
* Added ability to override built-in actions for the editorEric M2021-02-181-1/+5
| | | | This adds the ability to add overrides for built-in actions (i.e. ui_*) in the editor. Also added a number of additional built-in actions for various text-related actions, gui-generic actions (like copy and paste) and graph-related actions (duplicate nodes), etc. Moved the definition of input actions to input_map, rather than in project_settings so the editor can make use of these actions as well.
* Move project-specific editor data into res://.godot/editorAaron Franke2021-02-021-0/+1
|
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Initialize class/struct variables with default values in platform/ and editor/Rafał Mikrut2020-12-021-2/+2
|
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-3/+3
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Refactor MethodBind to use variadic templatesreduz2020-10-181-2/+1
| | | | Removed make_binders and the old style generated binders.
* Removed unnecessary keyword, fix comment styleCraig-Stoneham2020-09-291-1/+0
| | | | The privacy here is already private