diff --git a/Fange_Pipeline/operators/exports.py b/Fange_Pipeline/operators/exports.py index cb095fe..e2651f1 100644 --- a/Fange_Pipeline/operators/exports.py +++ b/Fange_Pipeline/operators/exports.py @@ -123,14 +123,12 @@ Requiert your blend file are write on your hard-drive.""" def get_asset_type(self) -> Path: """Look the file path, to understand if the asset are a Character, Buildings or Props""" abs_blend_path = Path(bpy.data.filepath) - print(f'[Pipeline] Get blend file path "{abs_blend_path}"') - print(f'[Pipeline] Convert to List "{abs_blend_path.parts}"') if 'Buildings' in abs_blend_path.parts: print(f'[Pipeline] Export here "{self.path.buildings}"') return self.path.buildings - elif 'Pros' in abs_blend_path.parts: + elif 'Props' in abs_blend_path.parts: print(f'[Pipeline] Export here "{self.path.props}"') return self.path.props