Advertisement
alcea

Facegen obj to fbx(with shapekeys)

Feb 28th, 2025
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. import bpy
  2. import os
  3. import glob
  4.  
  5. # File paths (Update if needed)
  6. sf_folder = r"C:\Users\User\Desktop\sf"
  7. base_mesh_path = os.path.join(sf_folder, "ls.obj")
  8. output_fbx_path = os.path.join(sf_folder, "ls.fbx")
  9.  
  10. # Clear existing objects in the scene
  11. bpy.ops.object.select_all(action='SELECT')
  12. bpy.ops.object.delete()
  13.  
  14. # Import the base mesh (ls.obj)
  15. bpy.ops.import_scene.obj(filepath=base_mesh_path)
  16. base_obj = bpy.context.selected_objects[0]
  17. base_obj.name = "BaseMesh"
  18.  
  19. # Find all blendshape files (expressions, modifiers, phonemes)
  20. blendshape_files = glob.glob(os.path.join(sf_folder, "ls_Expression*.obj")) + \
  21. glob.glob(os.path.join(sf_folder, "ls_Modifier*.obj")) + \
  22. glob.glob(os.path.join(sf_folder, "ls_Phoneme*.obj"))
  23.  
  24. # Process each blendshape
  25. for blendshape_path in blendshape_files:
  26. blendshape_name = os.path.basename(blendshape_path).replace(".obj", "")
  27.  
  28. # Import blendshape mesh
  29. bpy.ops.import_scene.obj(filepath=blendshape_path)
  30. blendshape_obj = bpy.context.selected_objects[0]
  31.  
  32. # Create Basis shape key if not exists
  33. if base_obj.data.shape_keys is None:
  34. base_obj.shape_key_add(name="Basis")
  35.  
  36. # Create new shape key
  37. shape_key = base_obj.shape_key_add(name=blendshape_name)
  38.  
  39. # Transfer vertex positions
  40. for i, vert in enumerate(blendshape_obj.data.vertices):
  41. shape_key.data[i].co = vert.co
  42.  
  43. # Remove the imported blendshape mesh
  44. bpy.data.objects.remove(blendshape_obj, do_unlink=True)
  45.  
  46. # Export the final FBX
  47. bpy.ops.export_scene.fbx(filepath=output_fbx_path, use_selection=False, apply_unit_scale=True)
  48.  
  49. print("FBX exported successfully:", output_fbx_path)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement