summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.h
Commit message (Collapse)AuthorAgeFilesLines
...
* | Remove empty lines around braces with the formatting scriptAaron Franke2020-11-161-1/+0
| |
* | 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
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-1/+2
| | | | | 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-8/+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.
* Add proper type to most public API uses of ArrayJuan Linietsky2020-04-211-1/+1
|
* Replace NULL with nullptrlupoDharkael2020-04-021-1/+1
|
* Style: Set clang-format Standard to Cpp11Rémi Verschelde2020-03-171-2/+2
| | | | | | | | | | 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`.
* Texture refactorJuan Linietsky2020-02-111-2/+2
| | | | | | | | -Texture renamed to Texture2D -TextureLayered as base now inherits 2Darray, cubemap and cubemap array -Removed all references to flags in textures (they will go in the shader) -Texture3D gone for now (will come back later done properly) -Create base rasterizer for RenderDevice, RasterizerRD
* 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.
* Merge pull request #33343 from KoBeWi/scene_tree_dustingRémi Verschelde2019-11-071-0/+1
|\ | | | | Another scene tree dock menu cleanup
| * Another scene tree dock menu cleanupTomasz Chabora2019-11-041-0/+1
| |
* | Node create dialog filtering optimizationPouleyKetchoupp2019-11-061-0/+2
|/ | | | Avoid loading the same scripts again and parse them when updating the node type tree.
* Allow to create scene from FileSystem dockTomasz Chabora2019-08-151-0/+1
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Refactor editor icon retrievalwillnationsdev2018-09-141-3/+8
|
* Make core/ includes absolute, remove subfolders from include pathRémi Verschelde2018-09-121-3/+3
| | | | | | 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.
* Add custom icons to script classes.Will Nations2018-08-141-0/+8
|
* Add script hierarchies,add-script btn auto-derivesWill Nations2018-07-251-0/+3
|
* -Added AnimationGraphPlayer (still missing features)Juan Linietsky2018-06-181-1/+5
| | | | -Added ability to edit resources from built-in inspector (wip, needs testing and feedback)
* Merge pull request #15489 from willnationsdev/gdnative-hookMax Hilbrunner2018-05-261-0/+1
|\ | | | | Add EditorPlugin.build() build callbacks
| * Add EditorPlugin.build() build callbacksWill Nations2018-01-081-0/+1
| |
* | Merge pull request #15928 from StateOff/feature_batch_renameRémi Verschelde2018-05-081-1/+1
|\ \ | | | | | | Implements "Batch Rename" editor tool.
| * | Implements "Batch Rename" editor tool.Blazej Floch2018-01-221-1/+1
| |/
* | Merge pull request #15640 from willnationsdev/resource-saved-signalMax Hilbrunner2018-05-071-0/+1
|\ \ | | | | | | Added EditorPlugin 'resource_saved' signal
| * | Added EditorPlugin 'resource_saved' signalWill Nations2018-01-311-0/+1
| |/
* / Now the inspector will show the custom resources added via pluginMrCdK2018-02-251-0/+1
|/
* Fixes #15416 - "The deleted nodes are hanging in the inspector."Blazej Floch2018-01-081-2/+2
|
* 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.
* Merge pull request #14802 from volzhs/selection-changedRémi Verschelde2018-01-041-1/+3
|\ | | | | Fix "selection_changed" called twice
| * Fix "selection_changed" called twicevolzhs2017-12-181-1/+3
| |
* | Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | | | | | Happy new year to the wonderful Godot community!
* | Properly rename scenes and resources after renaming or moving files, should ↵Juan Linietsky2017-12-261-0/+1
|/ | | | | | fix #13976 It's not tested, so please test.
* Fix typo 'begining' to 'beginning'Poommetee Ketson2017-09-011-1/+1
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Convert Object::cast_to() to the static versionHein-Pieter van Braam2017-08-241-4/+1
| | | | | | | | | | | | Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/
* Make available more informations about editor for Tool PluginsJakub Grzesik2017-07-181-11/+13
|
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-081-0/+1
|
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-051-51/+36
| | | | | | | | | | | | | | | | | | | | | | | | 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/+269
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.