1 Star 0 Fork 0

tangyin025/TexTools-Blender

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
op_texture_remove.py 444 Bytes
一键复制 编辑 原始数据 按行查看 历史
franMarz 提交于 2024-02-11 05:00 . Operators Undo and Register revision
import bpy
class op(bpy.types.Operator):
bl_idname = "uv.textools_texture_remove"
bl_label = "Remove Texture"
name : bpy.props.StringProperty(name="Image name", default="")
def execute(self, context):
if self.name in bpy.data.images:
#bpy.data.batch_remove([bpy.data.images[self.name]])
bpy.data.images.remove(bpy.data.images[self.name], do_unlink=True)
return {'FINISHED'}
bpy.utils.register_class(op)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tangyin025/TexTools-Blender.git
[email protected]:tangyin025/TexTools-Blender.git
tangyin025
TexTools-Blender
TexTools-Blender
master

搜索帮助