Fix two problems in my code as reported on Forums and in release article thread on frontpage:

* Quaternion action ipos accidently got swapped in the Ipo module
* Ipos not editable if not linked to a datablock (was possible in 2.33a)

Also fixed a typo in Object.getMatrix(): localespace -> localspace

And I add:

* channels Key 32 through Key 63 for relative vertex keys
This commit is contained in:
Nathan Letwory
2004-08-14 09:20:38 +00:00
parent 012854ae93
commit 2ea5ce017e
7 changed files with 51 additions and 212 deletions

View File

@@ -952,7 +952,7 @@ static PyObject *Object_getMatrix (BPy_Object *self, PyObject *args)
object_to_mat4(self->object, *((MatrixObject*)matrix)->matrix);
} else {
return (EXPP_ReturnPyObjError (PyExc_RuntimeError,
"correct spaces are 'worldspace' and 'localspace', none defaults to localespace"));
"correct spaces are 'worldspace' and 'localspace', none defaults to 'localspace'"));
}
return matrix;
}