summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.h
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* Add EditorContextMenuPluginManager and refactor menu pluginskobewi2024-09-031-29/+0
|
* Merge pull request #94582 from citizenll/feat_context_menu_plugin4.xRémi Verschelde2024-09-031-0/+30
|\ | | | | | | Add support for custom items to editor right-click context menus
| * Add support for custom items to editor right-click context menuscitizenl2024-09-031-0/+30
| |
* | Fix crash on reimport scene with animationsHilderin2024-08-021-0/+1
|/
* Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-071-1/+1
|
* Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-1/+1
|
* [Editor] Add `EditorPlugin::scene_saved` signalA Thousand Ships2024-01-221-0/+1
| | | | | Matches the `EditorNode` one for parity with the exposed `resource_saved` signal
* Avoid unnecessary inspector updates when loading or switching scenesYuri Sizov2023-08-121-3/+3
| | | | | | This should result in some noticeable performance improvements, aside from fixing bugs due to conflicts in logic. This also simplifies some related code identified while debugging.
* Fix node selection not handled correctly at launchkobewi2023-07-031-1/+0
|
* Fix some invalid plugin edit callskobewi2023-06-111-0/+1
|
* Allow GDExtensions to add editor pluginsDavid Snopek2023-05-251-0/+6
|
* Improve editor state persistenceHendrik Brucker2023-05-111-2/+2
|
* Extract editor run toolbar into its own componentYuri Sizov2023-04-191-0/+3
| | | | | | | | - 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.
* Add support for icons in GDExtension classesYuri Sizov2023-03-311-0/+2
| | | | Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Make icons of scripted and custom classes fit the editor UIYuri Sizov2023-03-311-1/+1
| | | | | | | | | | | Also: - Add an option to limit the icon size in PopupMenu. This is similar to how this works in Tree and TreeItem. - Add the same option to TabBar. - Add a theme constant for Tree, PopupMenu, Button, and TabBar to apply this limit on the control level. Co-authored-by: Daylily-Zeleen <daylily-zeleen@foxmail.com>
* Streamline class icon resolution in the editorYuri Sizov2023-03-311-0/+6
|
* Merge pull request #57606 from SaracenOne/update_on_reimportRémi Verschelde2023-01-231-1/+0
|\ | | | | | | Update instances of scenes which have been reimported.
| * Update instances of scenes which have been reimported.SaracenOne2023-01-161-1/+0
| |
* | Cleanup unused engine code v2kobewi2023-01-191-2/+0
|/
* Add EditorUndoRedoManager singletonkobewi2023-01-161-2/+2
|
* 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".
* Remove more instances of 'instance' being used as a verbVolTer2022-11-161-1/+1
|
* Improve handling of custom typeskobewi2022-09-051-0/+3
|
* Replace Array return types with TypedArraykobewi2022-08-221-1/+1
|
* Add per-scene UndoRedokobewi2022-08-221-6/+14
|
* Add a new HashSet templatereduz2022-05-201-1/+1
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-6/+6
| | | | | | | | | | | | * 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!
* Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-1/+1
| | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* Cleanup EditorNode and EditorDataHendrik Brucker2022-03-301-30/+50
| | | | Co-authored-by: Eric M <itsjusteza@gmail.com>
* Initialize bools in the headers in editorAaron Franke2022-03-121-3/+3
|
* Editor: Cleanup some includes dependenciesRémi Verschelde2022-02-151-5/+3
| | | | | | | | | | | 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.
* Merge pull request #43015 from Xrayez/refactor-auto-instapropRémi Verschelde2022-02-081-0/+2
|\ | | | | Refactor auto-instantiation of `Object` properties in editor
| * Refactor auto-instantiation of `Object` properties in editorAndrii Doroshenko (Xrayez)2021-12-281-0/+2
| | | | | | | | | | | | | | | | Auto-instantiation is used by the create dialog, but should also be used by the editor inspector. This refactors object properties auto-instantiation into a dedicated method to be reused throughout editor (and possibly scripting).
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
|/ | | | Happy new year to the wonderful Godot community!
* Remove unimplemented methodsMarcel Admiraal2021-10-211-2/+0
|
* Implement properties arrays in the Inspector.Gilles Roudière2021-09-071-1/+6
|
* Fix typos with codespellRémi Verschelde2021-05-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using codespell 2.0.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick fave findn GIRD leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
* Provide a way to hook into Inspectors UndoRedo.Gilles Roudière2021-05-041-0/+4
|
* Display scene file extensions in the editor only if there's ambiguityHugo Locurcio2021-03-201-1/+1
| | | | | This also simplifies the Editor Settings as the extension is now automatically shown to avoid ambiguity.
* Merge pull request #31747 from KoBeWi/scene_stalkingRémi Verschelde2021-02-101-0/+3
|\ | | | | Detect external modification of scenes
| * Detect external modification of project.godotkobewi2021-02-091-1/+1
| |
| * Detect external modification of scenesTomasz Chabora2021-01-161-0/+3
| |
* | Merge pull request #43222 from KoBeWi/sub_editor_oblivionRémi Verschelde2021-01-291-1/+0
|\ \ | |/ |/| Remove unused get_subeditor() method
| * Remove unused get_subeditor() methodTomasz Chabora2020-10-301-1/+0
| |
* | Fix cases of resources destroyed too earlyPedro J. Estébanez2021-01-061-2/+2
| |
* | 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 🎆
* | Cleanup unused engine codeTomasz Chabora2020-12-091-1/+0
| |
* | Initialize class/struct variables with default values in platform/ and editor/Rafał Mikrut2020-12-021-5/+5
| |