summaryrefslogtreecommitdiffstats
path: root/editor/import_dock.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-271-2/+2
|\ | | | | Fix copyright headers referring to Godot
| * Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-261-13/+4
|\ \ | |/ |/|
| * Don't swap Advanced Import Settings button position based on Swap OK CancelHugo Locurcio2024-10-181-13/+4
| | | | | | | | | | | | The "Advanced..." and "Reimport" buttons are not OK/Cancel buttons, so they shouldn't be swapped according to the editor setting (which itself is determined depending on the OS by default).
* | 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 support for resource conversion plugins in filesystem dock.SaracenOne2024-09-161-42/+13
|
* Cleanup of raw `nullptr` checks with `Ref`A Thousand Ships2024-08-311-1/+1
| | | | Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
* Fix missing options in Project Import DefaultsHilderin2024-07-091-10/+18
|
* [Scene] Add `SceneStringNames::confirmed`A Thousand Ships2024-06-191-1/+1
|
* [Scene] Add `SceneStringNames::item_selected`A Thousand Ships2024-06-191-1/+1
|
* [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-181-3/+3
|
* Fix Keep/Skip File import selection crashaaronp642024-06-051-7/+9
| | | | | | Added is_valid() and "params" key checks before trying to access ConfigFile's "params" section in ImportDock::_update_options, to handle case where selecting "Keep File" or "Skip File" importer passes in a null ConfigFile. Fixes #92785
* Use `CoreStringNames::normal` in more placesA Thousand Ships2024-05-301-2/+2
|
* fbx: change import option defaultsLyuma2024-05-211-2/+12
| | | | | ufbx has special logic to handle animation/trimming, and most users expect trimming to be on. For existing projects, we should upgrade files0 to FBX2glTF to preserve node compatibility.
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-2/+2
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-2/+2
|
* Fix errors/crashes related to skipped importsaaronp642024-04-251-4/+20
| | | | | | | | | | - Added check for "animation/fps" key before attempting to use it in EditorSceneFormatImporterBlend::import_scene, to give error instead of crashing - Don't show "Advanced..." button if last import used "Keep File" or "Skip File" - Don't try to call ResourceLoader::load on kept/skipped file when changing importer, which would give an error Fixes #90324
* [Import] Add "skip file" import option to skip (and exclude from export) ↵bruvzg2024-03-121-12/+46
| | | | importable formats, auto set it for the images used by bitmap font.
* Use check_changed_settings_in_group() everywherekobewi2024-02-191-1/+4
|
* Reorganize code related to editor themingYuri Sizov2024-01-161-1/+1
| | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* avoid cleanup for non-loadable assetsNolan Carroll2023-09-281-3/+6
|
* Fix accessing editor theme items throughout the UIYuri Sizov2023-09-151-1/+1
| | | | This also exposes `EditorInterface::get_editor_theme`.
* Merge pull request #80573 from KoBeWi/2k_lines_of_changes_created_at_2AMYuri Sizov2023-09-061-2/+3
|\ | | | | | | Add EditorStringNames singleton
| * Add EditorStringNames singletonkobewi2023-09-031-2/+3
| |
* | Fix error message when reimporting resources with an empty scene openAaron Franke2023-09-031-2/+5
|/
* Merge pull request #75137 from nongvantinh/implement-6320Rémi Verschelde2023-08-071-0/+15
|\ | | | | | | Expose 'Reimport' on right-click context menu in the FileSystem panel
| * Expose 'Reimport' on right-click context menu in the FileSystem panelNong Van Tinh2023-05-011-0/+15
| |
* | Merge pull request #78890 from KoBeWi/who_needs_restart_anywayYuri Sizov2023-07-121-11/+74
|\ \ | | | | | | | | | Allow change import type without restarting editor
| * | Allow change import type without restarting editorkobewi2023-07-031-11/+74
| | |
* | | Document editor import options in the class referenceHugo Locurcio2023-06-151-0/+10
|/ / | | | | | | | | | | | | Tooltips are displayed when hovering import options, both in the Import dock and in the import defaults editor (which is in the Project Settings). Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* / Allow EditorInspector to change its property name style when necessaryHaoyu Qiu2023-04-291-2/+0
|/ | | | | | | | | | Previously, an EditorInspector's property name can only be set from outside. Inspectors used for settings needs to respond to changes in editor settings. So a few boilerplate code is almost always needed, including watching for a certain editor setting in `_notification()`. This commit adds a `set_use_settings_style()` function to tell the inspector to watch for editor settings changes on its own.
* 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".
* Unify usage of GLOBAL/EDITOR_GETkobewi2022-10-181-1/+1
|
* Fix Import dock being too widekobewi2022-08-291-0/+3
|
* Rename `hint_tooltip` to `tooltip_text` & setgetMicky2022-08-271-2/+2
| | | | | | | | `hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too.
* Extract EditorResourceConversionPlugin into its own source files and clean ↵Yuri Sizov2022-07-311-0/+1
| | | | up editor includes
* Add ok_button_text to AcceptDialog and cancel_button_text to ConfirmationDialogFireForge2022-07-091-1/+1
|
* Move duplicate AutoWrap, Overrun and VisibleChar behavior enums to the ↵bruvzg2022-06-161-1/+1
| | | | TextServer.
* Add a new HashSet templatereduz2022-05-201-2/+2
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-4/+4
| | | | | | | | | | | | * 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 property name style toggle to InspectorHaoyu Qiu2022-03-281-0/+2
|
* Allow negative indexes in ItemList and PopupMenukobewi2022-03-121-3/+3
|
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-3/+5
|
* Revert "Add missing SNAME macro optimization to all theme methods call"Rémi Verschelde2022-02-081-5/+5
| | | | | | | | 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-5/+5
|
* Vectors: Use clear() and has().Anilforextra2022-02-021-1/+1
| | | | | | Use clear() instead of resize(0). Use has() instead of "find(p_val) != -1".
* Store panels and docks singletons in their own classestrollodel2022-01-201-0/+4
|
* Fix the importer dock being blank when selecting multiple files.Morris Tabor2022-01-061-0/+2
| | | | Broken in cff0a1a896dfd825c4cccf1e3853ad5217261b40
* Merge pull request #56240 from KoBeWi/frankenstein's_PRRémi Verschelde2022-01-051-5/+25
|\
| * Make Import Dock more obvious to usekobewi2021-12-251-5/+25
| | | | | | | | Co-authored-by: Jairo Honorio <registrofx@gmail.com>