Asset Pipeline v2 #145
@ -71,7 +71,11 @@ class AssetPipeline(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)
|
||||
asset_collection: bpy.props.PointerProperty(
|
||||
type=bpy.types.Collection,
|
||||
name="Asset",
|
||||
description="Top Level Collection of the Asset, all other collections of the asset will be children of this collection",
|
||||
)
|
||||
|
||||
temp_transfer_data: bpy.props.CollectionProperty(type=AssetTransferDataTemp)
|
||||
|
||||
@ -89,8 +93,8 @@ class AssetPipeline(bpy.types.PropertyGroup):
|
||||
new_file_mode: bpy.props.EnumProperty(
|
||||
name="New File Mode",
|
||||
items=(
|
||||
('KEEP', "Current File", "Update Selected Objects Only"),
|
||||
('BLANK', "Blank", "Update All Objects"),
|
||||
('KEEP', "Current File", "Setup the Existing File/Directory as an Asset"),
|
||||
('BLANK', "Blank File", "Create a New Blank Asset in a New Directory"),
|
||||
),
|
||||
)
|
||||
|
||||
|
@ -53,7 +53,7 @@ class ASSETPIPE_PT_sync(bpy.types.Panel):
|
||||
for task_layer in asset_pipe.local_task_layers:
|
||||
row.label(text=task_layer.name)
|
||||
|
||||
layout.prop(asset_pipe, "asset_collection", text="Asset")
|
||||
layout.prop(asset_pipe, "asset_collection")
|
||||
|
||||
layout.operator("assetpipe.update_ownership", text="Update Ownership")
|
||||
layout.operator("assetpipe.sync_push", text="Push to Publish", icon="TRIA_UP")
|
||||
|
Loading…
Reference in New Issue
Block a user