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 0f1859dcd9 - Show all commits

View File

@ -122,9 +122,7 @@ class ASSETPIPE_OT_create_new_asset(bpy.types.Operator):
for task_layer_key in constants.TASK_LAYER_TYPES.keys():
if task_layer_key == "NONE" or task_layer_key in local_tls:
continue
name = (
self._name + "." + constants.TASK_LAYER_TYPES[task_layer_key] + ".blend"
)
name = self._name + "." + task_layer_key + ".blend"
# Remove Data From Newly Created Files that aren't the user's main file
for col in bpy.data.collections: