summaryrefslogtreecommitdiffstats
path: root/modules/fbx/SCsub
diff options
context:
space:
mode:
authorK. S. Ernest (iFire) Lee <ernest.lee@chibifire.com>2024-02-16 05:25:15 -0800
committerRémi Verschelde <rverschelde@gmail.com>2024-02-23 22:33:04 +0100
commit04d43947bff4de9db8d7005862a1d895b6703fbc (patch)
treee060417820e6e3f51bb144260fa7122e68bfe7eb /modules/fbx/SCsub
parent2fe8f07b6c1156803e860519f37c269e394c699e (diff)
downloadredot-engine-04d43947bff4de9db8d7005862a1d895b6703fbc.tar.gz
Add ufbx for FBX importing
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>
Diffstat (limited to 'modules/fbx/SCsub')
-rw-r--r--modules/fbx/SCsub48
1 files changed, 48 insertions, 0 deletions
diff --git a/modules/fbx/SCsub b/modules/fbx/SCsub
new file mode 100644
index 0000000000..6a791094c6
--- /dev/null
+++ b/modules/fbx/SCsub
@@ -0,0 +1,48 @@
+#!/usr/bin/env python
+
+Import("env")
+Import("env_modules")
+
+env_fbx = env_modules.Clone()
+
+# Thirdparty source files
+
+thirdparty_obj = []
+
+thirdparty_dir = "#thirdparty/ufbx/"
+thirdparty_sources = [thirdparty_dir + "ufbx.c"]
+
+env_fbx.Prepend(CPPPATH=[thirdparty_dir])
+
+env_thirdparty = env_fbx.Clone()
+env_thirdparty.disable_warnings()
+
+env_thirdparty.Append(
+ CPPDEFINES=[
+ "UFBX_NO_SUBDIVISION",
+ "UFBX_NO_TESSELLATION",
+ "UFBX_NO_GEOMETRY_CACHE",
+ "UFBX_NO_SCENE_EVALUATION",
+ "UFBX_NO_INDEX_GENERATION",
+ "UFBX_NO_SKINNING_EVALUATION",
+ "UFBX_NO_FORMAT_OBJ",
+ ]
+)
+
+env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources)
+env.modules_sources += thirdparty_obj
+
+# Godot source files
+
+module_obj = []
+
+env_fbx.add_source_files(module_obj, "*.cpp")
+env_fbx.add_source_files(module_obj, "structures/*.cpp")
+
+if env.editor_build:
+ env_fbx.add_source_files(module_obj, "editor/*.cpp")
+
+env.modules_sources += module_obj
+
+# Needed to force rebuilding the module files when the thirdparty library is updated.
+env.Depends(module_obj, thirdparty_obj)