summaryrefslogtreecommitdiffstats
path: root/editor/editor_settings.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename ShortCut to Shortcut which is more grammatically correctHugo Locurcio2020-09-091-5/+5
| | | | See https://github.com/godotengine/godot/issues/16863#issuecomment-685236980.
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-2/+3
| | | | | Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-2/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Port member initialization from constructor to declaration (C++11)Rémi Verschelde2020-05-141-17/+9
| | | | | | | | | | Using `clang-tidy`'s `modernize-use-default-member-init` check and manual review of the changes, and some extra manual changes that `clang-tidy` failed to do. Also went manually through all of `core` to find occurrences that `clang-tidy` couldn't handle, especially all initializations done in a constructor without using initializer lists.
* Style: Set clang-format Standard to Cpp11Rémi Verschelde2020-03-171-1/+1
| | | | | | | | | | For us, it practically only changes the fact that `A<A<int>>` is now used instead of the C++03 compatible `A<A<int> >`. Note: clang-format 10+ changed the `Standard` arguments to fully specified `c++11`, `c++14`, etc. versions, but we can't use `c++17` now if we want to preserve compatibility with clang-format 8 and 9. `Cpp11` is still supported as deprecated alias for `Latest`.
* Signals: Fix some regressions from #36426Rémi Verschelde2020-03-031-1/+1
| | | | | | | | - Fix `callable_mp` bindings to methods which used to have default arguments passed to `bind_method`. We now have to re-specify them manually when connecting. - Re-add `GroupsEditor::update_tree` binding. - Misc code quality changes along the way.
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Allow to define and load script templates per projectAndrii Doroshenko (Xrayez)2019-08-221-1/+2
| | | | | | | | | | | | | | | | | | | | | Previously it was only possible to create custom script templates per editor instance which could lead to certain name collisions, but now one can create such templates per project tailored for specific use cases. The default path to search for custom script templates is defined in project settings via `editor/script_templates_search_path` setting as `res://script_templates` path, yet this can be configured per project. Templates have at most two origins now: 1. Project-specific, defined in `ProjectSettings`, for instance: - res://script_templates/ 2. Editor script templates, for instance: - %APPDATA%/Godot/script_templates/ As script templates can have the same name over different paths, the override mechanism was also added, enabling project-specific templates over the editor ones.
* Some code changed with Clang-Tidyqarmin2019-06-261-4/+1
|
* Created a fallback from the "Save Theme" button to "Save Theme As" when a ↵Kis Levente Lorand2019-06-131-0/+2
| | | | default theme is in use.
* Add ability to edit editor feature profilesJuan Linietsky2019-04-081-0/+1
| | | | Allows enabling/disabling parts of the editor and storing/loading profiles for that.
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Moved member variables to initializer listWilson E. Alvarez2018-12-111-16/+16
|
* Fixes favorites not updating and rename favorite_dirs to favoritesgroud2018-09-181-3/+3
|
* Make core/ includes absolute, remove subfolders from include pathRémi Verschelde2018-09-121-4/+4
| | | | | | This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
* -Project/Editor settings now use new inspectorJuan Linietsky2018-07-191-1/+6
| | | | | | | -Project/Editor settings now show tooltips properly -Settings thar require restart now will show a restart warning -Video driver is now visible all the time, can be changed easily -Added function to request current video driver
* Removed duplicate default colours and removed GDScriptHighligher colours ↵Paulb232018-06-131-0/+2
| | | | from main editor.
* Exposed set/get_project_metadata in EditorSettings.Michael Alexsander Silva Dias2018-05-161-1/+1
|
* Merge pull request #15399 from poke1024/load-one-translationRémi Verschelde2018-02-141-1/+0
|\ | | | | Load needed editor translation only on demand
| * Load needed translation on demandBernhard Liebl2018-01-061-1/+0
| |
* | Fix inconsistencies and typos in argument namesPaolo Perkovic2018-02-011-1/+1
| |
* | Fix editor setting value is back to defaultvolzhs2018-01-081-1/+1
| | | | | | | | Fix #15449
* | Fix editor settings weird behaviorvolzhs2018-01-061-2/+6
|/
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Fixed editor settings disappearing (caused by uninitialized variable).Daniel J. Ramirez2017-11-291-0/+5
|
* Fixed runtime EDITOR_DEFs being dropped.Daniel J. Ramirez2017-11-201-2/+2
|
* Use new XDG folders to dehardcode pathsRémi Verschelde2017-11-191-0/+1
|
* Add initial support for the XDG Base Directory specRémi Verschelde2017-11-191-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html (latest as of this commit). Three virtual methods are added to OS for the various XDG paths we will use: - OS::get_data_path gives XDG_DATA_HOME, or if missing: ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows - OS::get_config_path gives XDG_CONFIG_HOME, or if missing: ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows - OS::get_cache_path gives XDG_CACHE_HOME, or if missing: ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows So for Windows there are no changes, for Linux we follow the full split spec and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot. Support for system-wide installation of templates on Unix was removed for now, as it's a bit hackish and I don't think anyone uses it. user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by default, but when using the application/config/use_shared_user_dir option it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame. For now everything still goes in EditorSettings::get_settings_dir(), but this will be changed in a later commit to make use of the new splitting where relevant. Part of #3513.
* EditorSettings: Rename settings_path to settings_dirRémi Verschelde2017-11-171-2/+2
| | | | Also to prepare for upcoming refactoring for XDG support.
* Fixed editor settings disappearing.Daniel J. Ramirez2017-11-091-0/+3
| | | | Some items that are no longer defined may disappear, but thats expected i guess.
* Some more harmonization of EditorSettings codeRémi Verschelde2017-10-311-10/+10
|
* Reorder EditorSettings code for better legibilityRémi Verschelde2017-10-311-51/+36
| | | | No functional change, only moving stuff around.
* Added the set/get_setting function in Editor/Project settings. Renamed has() ↵Juan Linietsky2017-10-051-1/+5
| | | | to has_setting. Fixes #11844
* Update theme property respectivelyvolzhs2017-09-261-1/+4
|
* Added the ability to revert to initial value in editor settings.Daniel J. Ramirez2017-09-241-0/+8
|
* Dead code tells no talesRémi Verschelde2017-08-271-1/+1
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* -Massive clean up to gizmosJuan Linietsky2017-08-261-0/+3
| | | | | | | -Make sure handles are always visible (on top) -Fixed instanced scene selection (should work properly now) -Added interpolated camera -Customizable gizmo colors in editor settings
* Updated function argument namesWilson E. Alvarez2017-08-121-1/+1
|
* Add ability to use custom script templates.Andreas Haas2017-06-131-0/+2
| | | | | | | | | | Templates will be loaded from .godot/script_templates For now they're disabled for GDNative. Ideas for further improvements: - Add a "Save as Template" option to the script editor, as it can normally only save to res:// - Support more placeholders / custom placeholders
* Removal of InputEvent as built-in Variant type..Juan Linietsky2017-05-201-1/+1
| | | | this might cause bugs I haven't found yet..
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-081-0/+1
|
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-051-35/+39
| | | | | | | | | | | | | | | | | | | | | | | | I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-051-0/+180
The other subfolders of tools/ had already been moved to either editor/, misc/ or thirdparty/, so the hiding the editor code that deep was no longer meaningful.