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:
authorMichel Selten <michel@mselten.demon.nl>2003-06-28 19:10:23 +0400
committerMichel Selten <michel@mselten.demon.nl>2003-06-28 19:10:23 +0400
commit0ff572954ed867989892b4b37778c4d32370d9a2 (patch)
treeea20faf3d68f85c58c615a5625a7e36458f1cffd /source/blender/python/api2_2x/Object.h
parent8155033930e204d6eff5fdddbf9dea9d7a4fc23f (diff)
* Added functionality to the Object module for getting and setting the name of
the object. * Added the GetSelected function. (Same as getSelected). * Added a start for the Object.py API documentation. * Some minor bug-fixes to the Object module. * Added the functionality to get the IPO of the Object.
Diffstat (limited to 'source/blender/python/api2_2x/Object.h')
-rw-r--r--source/blender/python/api2_2x/Object.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Object.h b/source/blender/python/api2_2x/Object.h
index 604ac4b6a3c..d562ed0b404 100644
--- a/source/blender/python/api2_2x/Object.h
+++ b/source/blender/python/api2_2x/Object.h
@@ -83,6 +83,10 @@ typedef struct {
/* points to the object that is tracking this object. This is only set */
/* when there's a valid PyObject (already created at some point). */
struct BPy_Object * track;
+
+ /* points to the ipo object. This is only set when there's a valid */
+ /* PyObject (already created at some point). */
+ PyObject * ipo;
} BPy_Object;
#endif /* EXPP_OBJECT_H */