1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Port FBX module from commit 68013d2393

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
This commit is contained in:
Gordon MacPherson
2020-12-22 22:29:48 +00:00
parent a003ff0cf2
commit 6607fc7da9
53 changed files with 14712 additions and 0 deletions

16
modules/fbx/config.py Normal file
View File

@@ -0,0 +1,16 @@
def can_build(env, platform):
return env["tools"]
def configure(env):
pass
def get_doc_classes():
return [
"EditorSceneImporterFBX",
]
def get_doc_path():
return "doc_classes"