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

View File

@ -33,8 +33,13 @@ class ASSETPIPE_sync(bpy.types.Panel):
layout.label(text="Task Layer Config is invalid", icon="ERROR")
return
layout.label(text="Local Task Layers:")
box = layout.box()
row = box.row(align=True)
for task_layer in asset_pipe.local_task_layers:
row.label(text=task_layer.name)
layout.prop(asset_pipe, "asset_collection", text="Asset")
layout.label(text="Test UI")
layout.operator("assetpipe.update_ownership", text="Update Ownership")
layout.operator("assetpipe.sync_push", text="Push to Publish", icon="TRIA_UP")