Я хочу удалить текстуру в Blender. Это место в модификаторе смещения, а не в материале. Это сценарий, в котором я сделал плоскость и наложил на нее модификаторы, подразделение и смещение. Затем я прикрепляю текстуру карты глубины к модификатору смещения. Я хочу удалить текстуру карты глубины в конце скрипта.
#Create plane
bpy.ops.mesh.primitive_plane_add(size=2, enter_editmode=False, location=(-30, 0, 0))
#Load DepthMap Texture
img = bpy.data.images.load(filepath="C:/Users/emanu/Desktop/DepthMap.png")
cTex = bpy.data.textures.new("DepthMap", type="IMAGE")
cTex.image = img
#Add sub and displace modifiers
bpy.ops.object.modifier_add(type='SUBSURF')
bpy.context.object.modifiers["Subdivision"].subdivision_type = 'SIMPLE'
bpy.context.object.modifiers["Subdivision"].render_levels = 8
bpy.context.object.modifiers["Subdivision"].levels = 8
bpy.ops.object.modifier_add(type='DISPLACE')
bpy.context.object.modifiers["Displace"].texture_coords = 'UV'
bpy.context.object.modifiers["Displace"].strength = -0.05
#Apply Depthmap texture on the displace modifier
bpy.context.object.modifiers["Displace"].texture = bpy.data.textures['DepthMap']
#Here i want to delete the DepthMap texture from the .blend file
Tnx заранее.