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.
5 changed files with 8 additions and 8 deletions
Showing only changes of commit d17791f174 - Show all commits

View File

@ -4,7 +4,7 @@ import json
from . import constants
TASK_LAYER_TYPES = {}
TASK_LAYER_DEFAULTS = {}
TRANSFER_DATA_DEFAULTS = {}
ATTRIBUTE_DEFAULTS = {}
@ -22,7 +22,7 @@ def get_task_layer_presets_path():
def verify_json_data(json_file_path=""):
global TASK_LAYER_TYPES
global TASK_LAYER_DEFAULTS
global TRANSFER_DATA_DEFAULTS
global ATTRIBUTE_DEFAULTS
directory = Path(bpy.data.filepath).parent
if json_file_path == "":
@ -33,7 +33,7 @@ def verify_json_data(json_file_path=""):
json_content = json.load(json_file)
try:
TASK_LAYER_TYPES = json_content["TASK_LAYER_TYPES"]
TASK_LAYER_DEFAULTS = json_content["TASK_LAYER_DEFAULTS"]
TRANSFER_DATA_DEFAULTS = json_content["TRANSFER_DATA_DEFAULTS"]
ATTRIBUTE_DEFAULTS = json_content["ATTRIBUTE_DEFAULTS"]
return True
except KeyError:

View File

@ -12,8 +12,8 @@ def get_default_task_layer_owner(td_type: str, name="") -> [str, bool]:
config.ATTRIBUTE_DEFAULTS[name]['auto_surrender'],
)
return (
config.TASK_LAYER_DEFAULTS[td_type]['default_owner'],
config.TASK_LAYER_DEFAULTS[td_type]['auto_surrender'],
config.TRANSFER_DATA_DEFAULTS[td_type]['default_owner'],
config.TRANSFER_DATA_DEFAULTS[td_type]['auto_surrender'],
)

View File

@ -6,7 +6,7 @@ from pathlib import Path
from .prefs import get_addon_prefs
""" NOTE Items in these properties groups should be generated by a function that finds the
avaliable task layers from the task_layer_defaults.json file that needs to be created.
avaliable task layers from the task_layer.json file that needs to be created.
"""

View File

@ -4,7 +4,7 @@
"Rigging": "RIG",
"Shading": "SHD"
},
"TASK_LAYER_DEFAULTS": {
"TRANSFER_DATA_DEFAULTS": {
"GROUP_VERTEX": {
"default_owner": "Rigging",
"auto_surrender": false

View File

@ -3,7 +3,7 @@
"Modeling": "MOD",
"Shading": "SHD"
},
"TASK_LAYER_DEFAULTS": {
"TRANSFER_DATA_DEFAULTS": {
"GROUP_VERTEX": {
"default_owner": "Modeling",
"auto_surrender": false