enziop / mixamo_converter

Blender addon for converting mixamo animations to Unreal 4 rootmotion
GNU General Public License v3.0
663 stars 155 forks source link

Unable to function #90

Closed GodFather-GH closed 2 years ago

GodFather-GH commented 2 years ago

bpy.ops.object.select_all(action='SELECT')

bpy.ops.object.delete(use_global=False)

Python: Traceback (most recent call last): File "C:\Users\admin\AppData\Roaming\Blender Foundation\Blender\3.0\scripts\addons\mixamo_converter-master__init__.py", line 352, in execute numfiles = mixamoconv.batch_hip_to_root( File "C:\Users\admin\AppData\Roaming\Blender Foundation\Blender\3.0\scripts\addons\mixamo_converter-master\mixamoconv.py", line 490, in batch_hip_to_root file_loaderfile_ext File "C:\Users\admin\AppData\Roaming\Blender Foundation\Blender\3.0\scripts\addons\mixamo_converter-master\mixamoconv.py", line 443, in ".fbx": lambda filename: bpy.ops.import_scene.fbx( File "X:\3D\Blender\blender-3.0.1-windows-x64\blender-3.0.1-windows-x64\3.0\scripts\modules\bpy\ops.py", line 132, in call ret = _op_call(self.idname_py(), None, kw) RuntimeError: 错误: Version 6100 unsupported, must be 7100 or later

location: :-1

GodFather-GH commented 2 years ago

Blender The log information

enziop commented 2 years ago

It seems you try to convert FBX files that were saved with an old FBX version you need to use at least 7.1 (FBX 2011) or later as the blender importer doesn't support older versions like e.g.: 6.1

GodFather-GH commented 2 years ago

Thanks