Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bpy.types.ID.user_clear.1.py « examples « python_api « doc - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 239ed41c66c513ac01bbf1c32545130956f07cc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
This function is for advanced use only, misuse can crash blender since the user
count is used to prevent data being removed when it is used.
"""

# This example shows what _not_ to do, and will crash blender.
import bpy

# object which is in the scene.
obj = bpy.data.objects["Cube"]

# without this, removal would raise an error.
obj.user_clear()

# runs without an exception
# but will crash on redraw.
bpy.data.objects.remove(obj)