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.
3 changed files with 10 additions and 10 deletions
Showing only changes of commit 3d20440a37 - Show all commits

View File

@ -3,7 +3,7 @@ from pathlib import Path
import json
from . import constants
TASK_LAYER_TYPES = []
TASK_LAYER_TYPES = {}
DEFAULT_OWNERSHIP = {}
DEFAULT_OWNERSHIP_ATTRIBUTES = {}

View File

@ -1,9 +1,9 @@
{
"TASK_LAYER_TYPES": [
"Modeling",
"Rigging",
"Shading"
],
"TASK_LAYER_TYPES": {
"Modeling":"MOD",
"Rigging":"RIG",
"Shading":"SHD"
},
"DEFAULT_OWNERSHIP": {
"GROUP_VERTEX": "Rigging",
"MODIFIER": "Rigging",

View File

@ -1,8 +1,8 @@
{
"TASK_LAYER_TYPES": [
"Modeling",
"Shading"
],
"TASK_LAYER_TYPES": {
"Modeling":"MOD",
"Shading":"SHD"
},
"DEFAULT_OWNERSHIP": {
"GROUP_VERTEX": "Modeling",
"MODIFIER": "Modeling",