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.
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 787408aae0 - Show all commits

View File

@ -12,6 +12,7 @@ class ASSET_STATUS(bpy.types.PropertyGroup):
description="Depreciated files do not recieve any updates when syncing from a task layer",
default=False,
)
asset_collection: bpy.props.PointerProperty(type=bpy.types.Collection)
from . import constants

View File

@ -12,9 +12,11 @@ class ASSETPIPE_sync(bpy.types.Panel):
def draw(self, context: bpy.types.Context) -> None:
layout = self.layout
status = context.scene.asset_status
layout.label(
text=f"Active Task Layer: {context.collection.name.split('.')[-1]}"
)
layout.prop(status, "asset_collection", text="Asset")
layout.label(text="Test UI")
layout.operator("assetpipe.publish_new_version")
layout.operator("assetpipe.sync_with_publish", text="Update Ownership")