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

View File

@ -154,6 +154,8 @@ def remap_user(datablock, target_name):
def remap_external_datablocks(context):
# TODO STANDARDIZE IF ASSET SHOULD HAVE . IN SUFFIX OR NOT,
# ADD A CORE FUNCTION FOR APPENDING SUFFIX TO SINGLE ITEM
external_suffix = ".EXTERNAL"
target_suffix = ".LOCAL"

View File

@ -17,7 +17,9 @@ class ASSETOWNERSHIP(bpy.types.PropertyGroup):
name="Transfer Data Type",
items=constants.TRANSFER_DATA_TYPES,
)
id: bpy.props.PointerProperty(type=bpy.types.Object)
id: bpy.props.PointerProperty(
type=bpy.types.Object
) # TODO REPLACE WITH ID_DATA AND DELETE
classes = (ASSETOWNERSHIP,)