Files
blender-portable-repo/scripts/addons/atomic_data_manager/ops/utils/nuke.py
T
2026-03-17 14:30:01 -06:00

73 lines
1.7 KiB
Python

"""
Copyright (C) 2019 Remington Creative
This file is part of Atomic Data Manager.
Atomic Data Manager is free software: you can redistribute
it and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
Atomic Data Manager is distributed in the hope that it will
be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with Atomic Data Manager. If not, see <https://www.gnu.org/licenses/>.
---
This file contains functions for removing all data-blocks from specified
data categories.
"""
import bpy
def nuke_data(data):
# removes all data-blocks from the indicated set of data
for key in data.keys():
data.remove(data[key])
def collections():
# removes all collections from the project
nuke_data(bpy.data.collections)
def images():
# removes all images from the project
nuke_data(bpy.data.images)
def lights():
# removes all lights from the project
nuke_data(bpy.data.lights)
def materials():
# removes all materials from the project
nuke_data(bpy.data.materials)
def node_groups():
# removes all node groups from the project
nuke_data(bpy.data.node_groups)
def particles():
# removes all particle systems from the project
nuke_data(bpy.data.particles)
def textures():
# removes all textures from the project
nuke_data(bpy.data.textures)
def worlds():
# removes all worlds from the project
nuke_data(bpy.data.worlds)