fix(Blenvy:Blender):

* disabled manifest for 4.2 for now
* fixed missing variable for materials
This commit is contained in:
kaosat.dev 2024-07-22 00:50:49 +02:00
parent 16a28ab760
commit 4a72ed68bf
3 changed files with 2 additions and 2 deletions

View File

@ -14,6 +14,7 @@ def get_materials_to_export(changes_per_material, changed_export_parameters, blu
local_materials = [material for material in all_materials if material.library is None]
#and (changed_export_parameters or len(changes_per_material.keys()) > 0 )
materials_to_export = []
if change_detection and not changed_export_parameters:
changed_materials = []
@ -27,5 +28,4 @@ def get_materials_to_export(changes_per_material, changed_export_parameters, blu
materials_to_export = list(set(changed_materials + materials_not_on_disk + materials_always_export))
return materials_to_export