- add example for python rna property update

- edit the copyright for blender specific cmake find modules
This commit is contained in:
2011-06-20 02:54:56 +00:00
parent 6d7e3509a9
commit 97a85fe100
9 changed files with 165 additions and 107 deletions

View File

@@ -0,0 +1,20 @@
"""
Update Example
++++++++++++++
It can be useful to perform an action when a property is changed and can be
used to update other properties or synchronize with external data.
All properties define update functions except for CollectionProperty.
"""
import bpy
def update_func(self, context):
print("my test function", self)
bpy.types.Scene.testprop = bpy.props.FloatProperty(update=update_func)
bpy.context.scene.testprop = 11.0
# >>> my test function <bpy_struct, Scene("Scene")>