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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-02-18 17:27:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-18 17:27:18 +0300
commit251d27110b943c67ceaf3ab1192a36ebd07eeb4b (patch)
tree41814fcec10384755cf0f0398241e679857f18f0 /doc/python_api/examples/bpy.props.py
parentd9bca3d4919848f3ec43e2655b21b3e2f47c3e97 (diff)
examples for bpy.props
Diffstat (limited to 'doc/python_api/examples/bpy.props.py')
-rw-r--r--doc/python_api/examples/bpy.props.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/python_api/examples/bpy.props.py b/doc/python_api/examples/bpy.props.py
new file mode 100644
index 00000000000..f6bc55d6824
--- /dev/null
+++ b/doc/python_api/examples/bpy.props.py
@@ -0,0 +1,18 @@
+"""
+Assigning to Existing Classes
++++++++++++++++++++++++++++++
+
+Custom properties can be added to any subclass of an :class:`ID`,
+:class:`Bone` and :class:`PoseBone`.
+
+These properties can be animated, accessed by the user interface and python
+like blenders existing properties.
+"""
+
+import bpy
+
+# Assign a custom property to an existing type.
+bpy.types.Material.custom_float = bpy.props.FloatProperty(name="Test Prob")
+
+# Test the property is there.
+bpy.data.materials[0].custom_float = 5.0