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

View File

@ -23,9 +23,16 @@ class ASSET_PIPELINE_addon_preferences(bpy.types.AddonPreferences):
subtype="DIR_PATH", subtype="DIR_PATH",
) )
is_advanced_mode: bpy.props.BoolProperty(
name="Advanced Mode",
description="Show Advanced Options in Asset Pipeline Panels",
default=False,
)
def draw(self, context): def draw(self, context):
self.layout.prop(self, "custom_task_layers_dir") self.layout.prop(self, "custom_task_layers_dir")
self.layout.prop(self, "save_images_path") self.layout.prop(self, "save_images_path")
self.layout.prop(self, "is_advanced_mode")
classes = (ASSET_PIPELINE_addon_preferences,) classes = (ASSET_PIPELINE_addon_preferences,)