Asset Pipeline v2 #145

Closed
Nick Alberelli wants to merge 431 commits from (deleted):feature/asset-pipeline-v2 into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 8cab866874 - Show all commits

View File

@ -128,6 +128,7 @@ class AssetTransferMapping:
def _gen_transfer_data_map(self): def _gen_transfer_data_map(self):
transfer_data_map: Dict[bpy.types.Collection, bpy.types.Collection] = {} transfer_data_map: Dict[bpy.types.Collection, bpy.types.Collection] = {}
temp_transfer_data = bpy.context.scene.asset_pipeline.temp_transfer_data temp_transfer_data = bpy.context.scene.asset_pipeline.temp_transfer_data
temp_transfer_data.clear()
for source_obj in self.object_map: for source_obj in self.object_map:
target_obj = self.object_map[source_obj] target_obj = self.object_map[source_obj]
objs = [source_obj, target_obj] objs = [source_obj, target_obj]