summaryrefslogtreecommitdiff
path: root/editor/import
AgeCommit message (Collapse)Author
2023-05-12Enable shadow warnings and fix raised errorsNinni Pipping
(cherry picked from commit 71ee65dc5701a0675ae6b1879a694a28c7206a63)
2023-05-12import: Fix Silhouette used incorrect index.Lyuma
Fixes bind pose mistake from using i (mesh skin index) instead of bone_idx (skeleton bone index). Fixes #76448 (cherry picked from commit d33a734ac51f57043586fda058314075271527be)
2023-04-26[Image Font] Fix fractional ascent for font with odd height.bruvzg
(cherry picked from commit 41f7bb2025d3cdaf89ae4e22a906484a620d4ab2)
2023-04-24Fix OBJ mesh importer smoothing handlingkleonc
(cherry picked from commit e8900a2cac901d9b7d596af7be185eec54c7b858)
2023-04-07gltf: Remove obsolete hack to embed gltf textures in advanced importLyuma
(cherry picked from commit bd020b7d92dc99c3713b7d1b99da691b8d1e765e)
2023-03-27More i18n improvementsHaoyu Qiu
* Make placeholder in editor layout dialog translatable. * Make messages in scene import settings dialog translatable. * Mark theme override property categories for translation. (cherry picked from commit 5a5fd33e42239cb59aa34899675ca4e2a2c99106)
2023-03-27Fix ResourceImporterLayeredTexture::import() high_quality typenikitalita
(cherry picked from commit 68a6505f41e8c3254155122b0153c074a80f72c8)
2023-02-27Fix a crash in the GLB importerGilles Roudière
2023-02-23Fix settings not appearing for Animation Libraries in the Scene Import windowhare_ware
2023-02-23Merge pull request #73814 from lyuma/importer_mesh_convexRémi Verschelde
import: Fix uv2 by avoiding premature ImporterMesh::get_mesh()
2023-02-23Merge pull request #73687 from ↵Rémi Verschelde
Calinou/editor-convex-import-fix-max-convex-hulls-crash Add a property hint to fix crash when setting max convex hulls below 0
2023-02-23Add a property hint to fix crash when setting max convex hulls below 0Hugo Locurcio
Generating less than 1 convex hull is not valid anyway.
2023-02-23import: Fix uv2 by avoiding premature ImporterMesh::get_mesh()Lyuma
Implements create_convex_shape in ImpoterMesh. Note: ImporterMeshInstance3D::get_mesh() is safe. The only dangerous function with side effects is ImpoterMesh::get_mesh()
2023-02-23import: Pass the correct defaults to generated collision shapes.Lyuma
Solves incorrect defaults, as well as applied scale failing to apply. The default values are removed, and they differ from collision shape defaults These values must match the defaults defined in resource_importer_scene.cpp
2023-02-17Merge pull request #73195 from timothyqiu/weblate-commentsRémi Verschelde
Improvements and fixes based on Weblate comments
2023-02-17Merge pull request #69810 from trollodel/scene_importer_material_crash_fixRémi Verschelde
Ensure that generated import IDs are unique
2023-02-13Improvements and fixes based on Weblate commentsHaoyu Qiu
* Description of `ui_text_submit` action should be "Submit Text" instead of "Text Submitted". * Spell out "Animation" instead of using "Anim.". * Treat "Max" as regular word instead of writing "Max.". * Use generic "Set %s" for action name instead of a dedicated "Set target_position". * Add translator comment for: * "Inclusive" and "Self" in the profiler. * Places where it needs the context about being an editor progress label. * "Duplicated Animation Name" since it's refering to the new name of a duplicated animation. * Disambiguation of "View Plane Transform", "Paste Selects" and "Display Normal". * Fix wrong undo action name for renaming an input action. * Fix missing end quote in a shader error message. * In class reference: * Fix duplicated "if" in the description of `signf()`. * Fix mismatched example output in `String.operator %()`. * Fix typo in the description of `Decal.texture_emission`. * Unify description of `String.match()` and `StringName.match()`.
2023-02-10Merge pull request #71691 from ↵Rémi Verschelde
hcoura/res-importer-gen-physics-mesh-only-when-needed Fix SceneImportSettings perf issues
2023-02-10Add some missing translatable editor stringsHaoyu Qiu
2023-02-09Improve some editor strings for localizationHaoyu Qiu
2023-02-08[Bitmap Font] Fix character count check.bruvzg
2023-02-06Use reimport_append api for importing embedded gltf imagesLyuma
Co-authored-by: K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com>
2023-02-06Merge pull request #72455 from reduz/allow-reimport-appendingRémi Verschelde
Support reimport appending
2023-02-01Support reimport appendingJuan Linietsky
* Add API: `EditorFileSystem::reimport_append(path)`, thread safe, what can be used from importers when they generate new files within the import process. * Added a `remap.gen_param` custom value to .import files, which can be used by importers to store data needed to generate this file again or not. This API is added to allow the GLTF2 importer to properly extract png files as textures.
2023-02-01Merge pull request #72440 from V-Sekai/gltf_embed_as_uncompressedRémi Verschelde
gltf: Add GLTFHandleBinary::HANDLE_BINARY_EMBED_AS_UNCOMPRESSED
2023-02-01gltf: Add GLTFHandleBinary::HANDLE_BINARY_EMBED_AS_UNCOMPRESSEDLyuma
This option allows for a safe fallback for embedded gltf textures in cases where VRAM compression is not needed. Add an is_editor_hint guard around GLTFHandleBinary::HANDLE_BINARY_EXTRACT_TEXTURES, to use EMBED_AS_UNCOMPRESSED by default at runtime. This provides an option for pixel art to be stored losslessly. Additionally, respect project importer defaults for texture import settings. Avoid writing and reimporting extracted textures identical to version on disk.
2023-02-01Merge pull request #71409 from fire/escn-fixesRémi Verschelde
Fixes to ESCN mesh import
2023-01-31Use enum instead of int in virtual methods return typeRaul Santos
2023-01-31Merge pull request #72245 from JonqsGames/apply_root_scale_to_shapeRémi Verschelde
Apply root scale to 3d shapes on import
2023-01-30Refactor high quality texture importJuan Linietsky
* Only two texture import modes for low/high quality now: * S3TC/BPTC * ETC2/ASTC * Makes sense given this is the general preferred and most compatible combination in most platforms. * Removed lossy_quality from VRAM texture compression options. It was unused everywhere. * Added a new "high_quality" option to texture import. When enabled, it uses BPTC/ASTC (BC7/ASTC4x4) instead of S3TC/ETC2 (DXT1-5/ETC2,ETCA). * Changed MacOS export settings so required texture formats depend on the architecture selected. This solves the following problems: * Makes it simpler to import textures as high quality, without having to worry about the specific format used. * As the editor can now run on platforms such as web, Mac OS with Apple Silicion and Android, it should no longer be assumed that S3TC/BPTC is available by default for it.
2023-01-30Add remove immutable tracks option to glTF importerSilc Renew
Co-authored-by: Lyuma <xn.lyuma@gmail.com>
2023-01-28Apply root scale to shape on importJoJoX
2023-01-27Handle gltf binaryK. S. Ernest (iFire) Lee
[ Ignore and Warn | Extract Textures (default) | Optimize Loading Embedded as Basisu ] Enable compressed mip maps from Basis Universal for faster compressions. Increase the quality of Basis to avoid corruption. To keep compatibility use the first mip of the previous internal Godot format. Because texture names may have invalid filename characters, adds String::validate_filename to sanitize filenames for import pipeline use.
2023-01-23Convert en_GB spelling to en_US with codespellRémi Verschelde
2023-01-19Fix SceneImportSettings perf issuesHenrique Coura
2023-01-19Merge pull request #69288 from bruvzg/gde_low_level_funcsRémi Verschelde
[GDExtension] Expose some low level functions and String operators.
2023-01-19[GDExtension] Expose some low level functions and String operators.bruvzg
2023-01-19Avoid importing MSVC obj filesMario Liebisch
Currently Godot tries to import any file with the extension "obj" as a Wavefront OBJ model in text format. This will fail and potentially crash the editor, if the obj file is actually binary, like a MSVC build artifact/object file. While the COFF header at the start of the obj file is subject to change, this change should cover all potential/typical target machines possible right now. This fixes #71656.
2023-01-17Improve visibility of Actions button in Advanced import settings dialogHugo Locurcio
2023-01-17Merge pull request #70630 from asmaloney/importer-crash-null-mesh-nodeRémi Verschelde
Fix crash in SceneImportSettings::_select when a mesh has a null mesh node
2023-01-16obj: Avoid empty names and meshesrsjtdrjgfuzkfg
This commit updates the obj importer to properly name imported meshes and permits it to skip meshes that do not contain geometry. This fixes at least one crash and several warnings and avoids unnecessary meshes being generated when importing obj files that do not contain geometry that is not assigned to a named object (such as when exporting from Blender).
2023-01-14Fixes to ESCN importerK. S. Ernest (iFire) Lee
Convert mesh instance 3d to a mesh importer instance 3d to run importer code. Also does blend shapes.
2023-01-13Avoid crashing when custom GLSL shaders are imported when using the ↵clayjohn
gl_compatibility renderer
2023-01-13Merge pull request #71033 from scurest/obj-vertex-colorRémi Verschelde
Add vertex color support to OBJ importer
2023-01-08Use BitField<> in core type masksJuan Linietsky
* All core types masks are now correctly marked as bitfields. * The enum hacks in MouseButtonMask and many other types are gone. This ensures that binders to other languages non C++ can actually implement type safe bitmasks. * Most bitmask operations replaced by functions in BitField<> * Key is still a problem because its enum and mask at the same time. While it kind of works in C++, this most likely can't be implemented safely in other languages and will have to be changed at some point. Mostly left as-is. * Documentation and API dump updated to reflect bitfields in core types.
2023-01-07Mark OBJ vertex colors sRGB in materials (only if has vertex colors)scurest
2023-01-07Add vertex color support to OBJ importerscurest
Fixes #70982
2023-01-05One Copyright Update to rule them allRémi Verschelde
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".
2022-12-27Fix crash in SceneImportSettings::_select when a mesh has a null mesh_nodeAndy Maloney
2022-12-21Merge pull request #70360 from dustinsth/fix_import_dialog_textRémi Verschelde
Fix overlapping text in Advanced Import Settings action dialogs.