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.
13 changed files with 15 additions and 13 deletions
Showing only changes of commit 164124ff27 - Show all commits

View File

@ -5,7 +5,7 @@ from .naming import get_target_name, get_basename, get_name_with_asset_prefix
from .util import get_storage_of_id from .util import get_storage_of_id
from .transfer_data.transfer_core import transfer_data_add_entry from .transfer_data.transfer_core import transfer_data_add_entry
from .other_ids import get_other_ids from .other_ids import get_other_ids
from . import constants from .. import constants
class AssetTransferMapping: class AssetTransferMapping:

View File

@ -18,7 +18,7 @@ from .naming import (
from pathlib import Path from pathlib import Path
from typing import Dict from typing import Dict
from . import constants from .. import constants
def ownership_transfer_data_cleanup( def ownership_transfer_data_cleanup(

View File

@ -21,7 +21,7 @@
import bpy import bpy
from bpy_extras.id_map_utils import get_id_reference_map, get_all_referenced_ids from bpy_extras.id_map_utils import get_id_reference_map, get_all_referenced_ids
from .util import get_storage_of_id from .util import get_storage_of_id
from . import constants from .. import constants
DELIMITER = "." DELIMITER = "."

View File

@ -1,5 +1,5 @@
from pathlib import Path from pathlib import Path
from . import constants from .. import constants
def find_file_version(published_file: Path) -> int: def find_file_version(published_file: Path) -> int:

View File

@ -1,7 +1,9 @@
import bpy import bpy
from .. import naming
from . import transfer_functions from . import transfer_functions
from .. import constants, naming from ... import constants
def copy_transfer_data_ownership( def copy_transfer_data_ownership(

View File

@ -3,7 +3,7 @@ from bpy import context
from ..naming import get_basename from ..naming import get_basename
from ..drivers import find_drivers, copy_driver from ..drivers import find_drivers, copy_driver
from . import transfer_core # TODO FIX from . import transfer_core # TODO FIX
from .. import constants from ... import constants
import mathutils import mathutils
import bmesh import bmesh
import numpy as np import numpy as np

View File

@ -1,5 +1,5 @@
import bpy import bpy
from .. import constants from ... import constants
def draw_transfer_data_type( def draw_transfer_data_type(

View File

@ -2,20 +2,20 @@ import bpy
import os import os
from pathlib import Path from pathlib import Path
from .publish import ( from .merge.publish import (
find_sync_target, find_sync_target,
find_all_published, find_all_published,
get_next_published_file, get_next_published_file,
) )
from naming import get_task_layer_col_name from .merge.naming import get_task_layer_col_name
from .other_ids import init_other_ids from .merge.other_ids import init_other_ids
from .core import ( from .merge.core import (
ownership_get, ownership_get,
ownership_set, ownership_set,
get_invalid_objects, get_invalid_objects,
merge_task_layer, merge_task_layer,
) )
from .transfer_data.transfer_ui import draw_transfer_data from .merge.transfer_data.transfer_ui import draw_transfer_data
from . import constants from . import constants

View File

@ -1,7 +1,7 @@
import bpy import bpy
from pathlib import Path from pathlib import Path
from .transfer_data.transfer_ui import draw_transfer_data from .merge.transfer_data.transfer_ui import draw_transfer_data
from . import constants from . import constants