STEAM-GRUPPE
Blender Source Tools BleST
STEAM-GRUPPE
Blender Source Tools BleST
360
I SPIL
2,127
ONLINE
Grundlagt:
8. november 2013
Alle diskussioner > Help > Trådoplysninger
Momo 4. nov. 2019 kl. 6:43
Support for multiple nested sub folders?
Is there a way to export files from a .blend with a complicated collection structure with a sub folder for every collection level? The add-on allows for a custom sub folder to be defined per object, but there's no way to bulk-assign it.
Sidst redigeret af Momo; 4. nov. 2019 kl. 6:44
< >
Viser 1-3 af 3 kommentarer
xdshot 4. nov. 2019 kl. 7:04 
Assignexport dir for each collection and object via python
Momo 4. nov. 2019 kl. 7:21 
I was hoping there would be an easier way.
Momo 4. nov. 2019 kl. 7:36 
Alright, I prepared a simple script that does what I want.
import bpy for obj in bpy.context.scene.collection.all_objects: obj.vs.subdir = '' for collection in bpy.data.collections: for obj in collection.all_objects: obj.vs.subdir += collection.name obj.vs.subdir += '/'
< >
Viser 1-3 af 3 kommentarer
Per side: 1530 50

Alle diskussioner > Help > Trådoplysninger
Dato opslået: 4. nov. 2019 kl. 6:43
Indlæg: 3