Asset Pipeline v2 #145
@ -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,
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user