summaryrefslogtreecommitdiffstats
path: root/modules/fbx/fbx_parser/FBXParser.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove ad-hoc FBX importerRémi Verschelde2022-03-301-1322/+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 formatting scripts, add a clang-tidy script, and run clang-tidyNathan Franke2022-01-291-1/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* clang-format: Various fixes to comments alignment from `clang-format` 13Rémi Verschelde2021-10-281-7/+0
| | | | All reviewed manually and occasionally rewritten to avoid bad auto formatting.
* Replace HTTP links with HTTPS for sites with HTTPS versionsAaron Franke2021-08-221-1/+1
|
* Fix sub-optimal uses of is_equal_approxAaron Franke2021-06-201-1/+1
|
* Rename files and the exposed name for Transform3DAaron Franke2021-06-031-1/+1
|
* Rename Transform to Transform3D in coreAaron Franke2021-06-031-2/+2
|
* Replace remaining uses of `NULL` with `nullptr`Rémi Verschelde2021-04-291-2/+2
| | | | Follow-up to #38736 (these uses were likely added after this PR was merged).
* fbx: Fix include for zlib that broke unbundlingRémi Verschelde2021-04-221-1/+1
| | | | It's possible to link against system zlib on Linux, so we should use system paths.
* This stops using FBXPropertyTable as a pointer.Gordon MacPherson2021-04-151-1/+35
| | | | | | | | | | | | | | | | | | The base object will inherit the property table, for every FBX object, if it doesn't exist it will be ignored. The previous code was dangerous and not simple to understand, this makes the code simpler and should result in no leaks with PropertyTable. Features/Fixes: Adds ability for multiple millions of polygons to be loaded. Fixes memory leaks with tokens Fixes memory leaks with property table Fixes loading some corrupt files Fixes meshes not having a unique name to the mesh node. Opens up loading for two more versions: 7100 and 7200, up to 2020. Preliminary support for Cinema4D files in parser now, before this was not possible it would cause memory corruption, which is gone now. FBXProperties not being pointers presented simpler challenges in the long run also, fixed a bunch of bugs.
* Style: Apply clang-tidy's `modernize-use-default-member-init`Rémi Verschelde2021-04-051-1/+1
|
* 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 🎆
* Port FBX module from commit 68013d23932688e57b489600f4517dd280edc464Gordon MacPherson2020-12-231-0/+1295
Ports FBX module from 3.2 branch to 4.0 This is the only time the plugin will be updated from 3.2 and marks the final time we do this, from now on we will backport FBX to 3.2 with fixes. Changelog: - fixed crash importing files with buggy format (because of bad newlines in ASCII data, this is yet to be fixed fully) - fixed const correctness with C++/C version change - rewrote material handling to be simpler and better - ports from 3.2 to 4.0 the fbx importer