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 99ccbe27db - Show all commits

View File

@ -487,7 +487,17 @@ def transfer_shape_key(
# ATTRIBUTE # ATTRIBUTE
def attributes_get_editable(attributes): def attributes_get_editable(attributes):
return [item for item in attributes if not (item.is_required or item.is_internal)] # TODO replace 'position' HACK with is_required once https://projects.blender.org/blender/blender/pulls/111468 is merged
return [
item
for item in attributes
if not (
item.is_internal
or item.name == 'position'
or item.name == 'material_index'
or item.name == 'sharp_face'
)
]
def attribute_clean(obj): def attribute_clean(obj):