summaryrefslogtreecommitdiffstats
path: root/modules/fbx
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #93401 from Repiteo/style/clang-tidy-fixesThaddeus Crews2024-11-041-4/+8
|\ | | | | | | Style: Apply `clang-tidy` fixes
| * Style: Apply `clang-tidy` fixes (superficial)Thaddeus Crews2024-11-041-4/+8
| | | | | | | | • `modernize-use-bool-literals`, `modernize-use-nullptr`, and `readability-braces-around-statements`
* | GLTF: Clean up animation code to make way for KHR_animation_pointerAaron Franke2024-11-041-3/+3
|/
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* Merge pull request #94783 from TokageItLab/validate-gltf-anim-nameRémi Verschelde2024-09-121-7/+1
|\ | | | | | | Add validation to glTF importer for Blendshape and Animation
| * Add validation to glTF importer for Blendshape and AnimationSilc 'Tokage' Renew2024-07-261-7/+1
| |
* | Cleanup of raw `nullptr` checks with `Ref`A Thousand Ships2024-08-311-5/+4
| | | | | | | | Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
* | ResourceImporterScene: Replace animation bool with an import type string enumAaron Franke2024-08-274-4/+4
| |
* | Fix owner warning when importing FBX.Saracen2024-08-261-0/+1
| |
* | Remove empty bind_methods()kobewi2024-08-152-6/+0
|/
* Fix missing options in Project Import DefaultsHilderin2024-07-092-17/+9
|
* Rename FBX2glTF binary path setting back to 4.2 nameRémi Verschelde2024-05-302-2/+2
| | | | | | | | This preserves compatibility when upgrading Godot 4.2 projects which relied on that path being configured in the editor settings. The old name also makes sense for this one, it's fine for fbx2gltf_path to be under a generic fbx category which could have more settings also impacting ufbx.
* Add bake_fps for FBXDocument, GLTFDocument and both import-export.K. S. Ernest (iFire) Lee2024-05-233-5/+11
|
* fbx: change import option defaultsLyuma2024-05-211-1/+1
| | | | | 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.
* Merge pull request #91529 from bqqbarbhg/ufbx-warningsRémi Verschelde2024-05-071-0/+36
|\ | | | | | | FBX: Print ufbx load warnings on import
| * Print ufbx load warnings on importbqqbarbhg2024-05-071-0/+36
| |
* | Merge pull request #91528 from bqqbarbhg/ufbx-v0.14.0Rémi Verschelde2024-05-071-1/+1
|\ \ | | | | | | | | | FBX: Update ufbx to v0.14.0
| * | Update ufbx to v0.14.0bqqbarbhg2024-05-071-1/+1
| |/
* / Fix handling missing skins using ufbx importerbqqbarbhg2024-05-032-6/+5
|/ | | | | | Previously, _asset_parse_skins() would mess with the order of skin indices. However, the rest of the code expected these to match to ufbx skin indices. To fix this, retain the original skin indices in FBXState::original_skin_indices.
* Resolve bind poses from FBX clusters instead of FBX posesbqqbarbhg2024-04-251-16/+81
| | | | | Turns out that the information in FBX Pose objects is relatively often broken. Using skin cluster bind poses seems more reliable, but cannot capture the bind pose of the root bone.
* Merge pull request #90894 from lyuma/animation_step_30Rémi Verschelde2024-04-241-0/+1
|\ | | | | | | Set animation step from importers. Increase default step from 10 to 30FPS
| * Set animation step from importers. Increase default step from 10 to 30 FPS.Lyuma2024-04-191-0/+1
| |
* | fbx: Avoid name conflict with humanoid "Root" boneLyuma2024-04-231-1/+1
|/ | | | The importer forces name uniqueness, even for the root. "RootNode" is less likely to conflict.
* Fix FBX and glTF when root nodes are skeleton bonesLyuma2024-04-171-2/+5
| | | | | Set p_scene_parent to the skeleton to guarantee BoneAttachment3D nodes are added as a child of the active skeleton. Use get_owner() to go all the way up when calculating the root node in generate_scene
* Fix FBX texture path resolvingbqqbarbhg2024-04-131-2/+6
|
* Enable FBX albedo factor when textures are boundbqqbarbhg2024-04-131-1/+5
|
* Fix FBX orthographic camera sizebqqbarbhg2024-04-121-1/+1
|
* Fix FBX emission_texture copy-paste issuebqqbarbhg2024-04-121-1/+1
|
* Convert FBX material colors from linear to sRGBbqqbarbhg2024-04-121-2/+2
|
* Apply "Remove Immutable Tracks" after post-import.Lyuma2024-03-302-4/+3
| | | | | | Reimplements "Remove Immutable" by comparing to the skeleton rest. It is necessary to delay removing animation tracks until after the correct rest pose is calculated in rest-fixer. Preserves the original implementation in the GLTFDocument / FBXDocument API for compatibility.
* Fix method bindings in FBXDocument by making them virtual in GLTFDocument.Lyuma2024-03-152-8/+7
|
* Fix compilation errors when `DISABLE_DEPRECATED` is defined398utubzyt2024-02-281-1/+1
|
* Add new scene import option to import as SkeletonLyuma2024-02-263-1/+10
| | | | | | Adds a bool import option `nodes/import_as_skeleton_bones`. This is supported in all FBX or GLTF document based formats. It is especially useful for retargeting and importing animations.
* Add ufbx for FBX importingK. S. Ernest (iFire) Lee2024-02-2316-0/+3222
| | | | | | | | | | | | | | | | This update introduces a new import method for FBX files using ufbx. If the fbx2gltf import fails, it will use the most recently cached scene from the ufbx import. The process is sped up by introducing threads to load the ufbx portion. Key changes include: - Support for importing geometry helper nodes in FBX files. - Addition of cameras and lights with updated names. - Removal of the fbx importer manager. - Introduction of ModelDocument3D and updates to its methods. - Changes to FBX import options and visibility. - Updating the documentation and handling some errors. - Store the original non-unique node, mesh and animation names in FBX and glTF. Co-Authored-By: bqqbarbhg <bqqbarbhg@gmail.com>
* Remove ad-hoc FBX importerRémi Verschelde2022-03-3052-14483/+0
| | | | | | | | | | | | | | | | | This importer was the fruit of a lot of amazing reverse engineering work by RevoluPowered, based on the original Assimp importer that was introduced by fire. While promising and well tuned for a specific type of FBX scenes, it was found to have many flaws to support the many FBX exporters and legacy models that Godot users want to use. As we currently lack a maintainer to improve it, those issues are left unresolved and FBX import is still sub-par in the current Godot releases. After some experimentation, we're instead adding a new importer that relies on Facebook's `fbx2gltf` command line tool to convert FBX to glTF, so that we can then use our well-maintained glTF importer. See #59653 and https://github.com/facebookincubator/FBX2glTF for details.
* Simplify FBX importer project settings registeringHaoyu Qiu2022-03-292-20/+7
|
* Replace copies with constant refsAleksey Smirnov2022-03-281-5/+5
|
* Add GLTF, DAE and FBX importers enforcement for blend shape mask arrayAdam Scott2022-03-241-0/+11
|
* Use Filament specular models and parametrizationclayjohn2022-02-221-1/+1
|
* Style: Cleanup single-line blocks, semicolons, dead codeRémi Verschelde2022-02-161-26/+0
| | | | | Remove currently unused implementation of TextureBasisU, could be re-added later on if needed and ported.
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-1/+1
|
* String: Add contains().Anilforextra2022-02-041-1/+1
|
* simplify formatting scripts, add a clang-tidy script, and run clang-tidyNathan Franke2022-01-294-6/+5
|
* Fix crash on importing FBX fileHaoyu Qiu2022-01-101-2/+2
|
* options dict is now passed to _import_scene.K. S. Ernest (iFire) Lee2022-01-052-2/+10
|
* Update copyright statements to 2022Rémi Verschelde2022-01-0347-94/+94
| | | | Happy new year to the wonderful Godot community!
* Fix various typosluz paz2022-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Found via ` codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,expct,fave,findn,gird,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint,varn` Update editor/import/resource_importer_layered_texture.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update doc/classes/TileSetScenesCollectionSource.xml Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/gui/graph_edit.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/resources/animation.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/resources/animation.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/resources/animation.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/gui/rich_text_label.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Revert previously committed change
* Replace String comparisons with "", String() to is_empty()Nathan Franke2021-12-092-5/+5
| | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings
* Merge pull request #54072 from KoBeWi/hrcr_is_dedRémi Verschelde2021-11-031-1/+1
|\
| * Remove node_hrcr hackkobewi2021-10-281-1/+1
| |