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

View File

@ -56,6 +56,18 @@ class ASSETPIPE_PT_sync(bpy.types.Panel):
# box.prop(asset_pipe, "is_depreciated")
class ASSETPIPE_PT_sync_advanced(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_category = 'Asset Pipe 2'
bl_label = "Advanced"
bl_parent_id = "ASSETPIPE_PT_sync"
bl_options = {'DEFAULT_CLOSED'}
def draw(self, context: bpy.types.Context) -> None:
self.layout.label(text="FOO")
class ASSETPIPE_PT_ownership_inspector(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
@ -95,6 +107,7 @@ class ASSETPIPE_PT_ownership_inspector(bpy.types.Panel):
classes = (
ASSETPIPE_PT_sync,
ASSETPIPE_PT_sync_advanced,
ASSETPIPE_PT_ownership_inspector,
)