Untitled

mail@pastecode.io avatar
unknown
python
7 months ago
195 B
3
Indexable
Never
import bpy

# Get a list of all collections
collections = bpy.data.collections

# Delete all collections
for collection in collections:
    bpy.data.collections.remove(collection, do_unlink=True)
Leave a Comment