===Python API===

Adding support for Action Strips to the API.  A new attribute "actionStrips"
has been added to the Object API to access them.
This commit is contained in:
Ken Hughes
2006-05-22 14:19:52 +00:00
parent a849ba8189
commit 677cf7f133
6 changed files with 1184 additions and 18 deletions

View File

@@ -3642,6 +3642,8 @@ static PyObject *Object_getAttr( BPy_Object * obj, char *name )
return ModSeq_CreatePyObject( object );
if( StringEqual( name, "constraints" ) )
return ObConstraintSeq_CreatePyObject( object );
if( StringEqual( name, "actionStrips" ) )
return ActionStrips_CreatePyObject( object );
if( StringEqual( name, "rbMass" ) )
return PyFloat_FromDouble( ( double ) object->mass );
if( StringEqual( name, "rbFlags" ) )