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 cbd94d1c85 - Show all commits

View File

@ -111,7 +111,7 @@ class ASSETPIPE_OT_create_new_asset(bpy.types.Operator):
class ASSETPIPE_OT_update_ownership(bpy.types.Operator):
bl_idname = "assetpipe.update_ownership"
bl_label = "Update Onwership"
bl_description = """""" # TODO Add description
bl_description = """Update the Ownership of Objects and Transfer Data"""
_temp_transfer_data = None
_invalid_objs = []
@ -138,7 +138,7 @@ class ASSETPIPE_OT_update_ownership(bpy.types.Operator):
class ASSETPIPE_OT_sync_pull(bpy.types.Operator):
bl_idname = "assetpipe.sync_pull"
bl_label = "Pull from Publish"
bl_description = """""" # TODO Add description
bl_description = """Pull Task Layers from the published sync target"""
_temp_transfer_data = None
_invalid_objs = []
@ -182,7 +182,7 @@ class ASSETPIPE_OT_sync_pull(bpy.types.Operator):
class ASSETPIPE_OT_sync_push(bpy.types.Operator):
bl_idname = "assetpipe.sync_push"
bl_label = "Push from Publish"
bl_description = """""" # TODO Add description
bl_description = """Push the current Task Layer to the published sync target"""
_temp_transfer_data = None
_invalid_objs = []