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 05ccedbc0c - Show all commits

View File

@ -6,7 +6,7 @@ from .merge.task_layer import draw_task_layer_selection
from .config import verify_json_data
class ASSETPIPE_sync(bpy.types.Panel):
class ASSETPIPE_PT_sync(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_category = 'Asset Pipe 2'
@ -56,7 +56,7 @@ class ASSETPIPE_sync(bpy.types.Panel):
# box.prop(asset_pipe, "is_depreciated")
class ASSETPIPE_ownership_inspector(bpy.types.Panel):
class ASSETPIPE_PT_ownership_inspector(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_category = 'Asset Pipe 2'
@ -94,8 +94,8 @@ class ASSETPIPE_ownership_inspector(bpy.types.Panel):
classes = (
ASSETPIPE_sync,
ASSETPIPE_ownership_inspector,
ASSETPIPE_PT_sync,
ASSETPIPE_PT_ownership_inspector,
)