Asset Pipeline: Add Support for Asset Catalogs #185

Merged
Nick Alberelli merged 7 commits from TinyNick/blender-studio-pipeline:feature/asset-pipeline-set-catalog into main 2024-01-09 23:28:34 +01:00
Showing only changes of commit 6eb7107918 - Show all commits

View File

@ -149,7 +149,11 @@ class AssetPipeline(bpy.types.PropertyGroup):
def get_asset_catalogs(self, context): def get_asset_catalogs(self, context):
return get_asset_cat_enum_items() return get_asset_cat_enum_items()
asset_catalog_id: bpy.props.EnumProperty(name="Catalog", items=get_asset_catalogs) asset_catalog_id: bpy.props.EnumProperty(
name="Catalog",
items=get_asset_catalogs,
description="Select Asset Library Catalog for the current Asset, this value will be updated each time you Push to an 'Active' Publish",
)
classes = ( classes = (