* 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.
This commit is contained in:
2003-06-28 15:10:23 +00:00
parent 8155033930
commit 0ff572954e
3 changed files with 285 additions and 9 deletions

View File

@@ -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 */