Untitled

 avatar
unknown
python
a year ago
195 B
7
Indexable
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)
Editor is loading...
Leave a Comment