Skip to content

Instantly share code, notes, and snippets.

@eliemichel
Created September 24, 2018 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eliemichel/71273de36fab117c7dc0c828af7f3cc0 to your computer and use it in GitHub Desktop.
Save eliemichel/71273de36fab117c7dc0c828af7f3cc0 to your computer and use it in GitHub Desktop.
"""
Usage: blender.exe -b -P BlenderSurfRigMerge.py
Requires TransferMaterialsOperator.py in the same directory
Copyright (c) 2018 -- Elie Michel
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
The Software is provided “as is”, without warranty of any kind, express or
implied, including but not limited to the warranties of merchantability,
fitness for a particular purpose and noninfringement. In no event shall the
authors or copyright holders be liable for any claim, damages or other
liability, whether in an action of contract, tort or otherwise, arising from,
out of or in connection with the software or the use or other dealings in the
Software.
"""
import sys, os
sys.path.append(os.path.dirname(__file__))
import bpy
from TransferMaterialsOperator import transferMaterialsFromGroup
rig_file = r"D:\Archiviste\Pipe\tube-rig-v001.blend"
surf_file = r"D:\Archiviste\Pipe\tube-surf-v001.blend"
merged_file = r"D:\Archiviste\Pipe\tube-merged-v001.blend"
def execute(context):
bpy.ops.wm.read_homefile(use_empty=True)
# Append rig data
with bpy.data.libraries.load(rig_file, link=False) as (data_src, data_dst_rig):
data_dst_rig.groups = data_src.groups
data_dst_rig.groups.sort(key=lambda grp: grp.name)
# Link surf data
with bpy.data.libraries.load(surf_file, link=True) as (data_src, data_dst_surf):
data_dst_surf.groups = data_src.groups
data_dst_surf.groups.sort(key=lambda grp: grp.name)
# Merge linked surf data into rig data and then unlink it
for rig_grp, surf_grp in zip(data_dst_rig.groups, data_dst_surf.groups):
for obj in rig_grp.objects:
context.scene.objects.link(obj)
transferMaterialsFromGroup(context, surf_grp)
bpy.data.groups.remove(surf_grp)
bpy.ops.wm.save_as_mainfile(filepath=merged_file)
execute(bpy.context)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment