Untitled
unknown
python
2 years ago
195 B
11
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