2.50:
svn merge https://svn.blender.org/svnroot/bf-blender/trunk/blender -r19820:HEAD Notes: * Game and sequencer RNA, and sequencer header are now out of date a bit after changes in trunk. * I didn't know how to port these bugfixes, most likely they are not needed anymore. * Fix "duplicate strip" always increase the user count for ipo. * IPO pinning on sequencer strips was lost during Undo.
This commit is contained in:
@@ -109,7 +109,9 @@ PyObject * getWeight (PyImage * self, PyObject * args)
|
||||
short weight = 0;
|
||||
// get arguments
|
||||
char * id;
|
||||
if (self->m_image != NULL && PyArg_ParseTuple(args, "s", &id))
|
||||
if (!PyArg_ParseTuple(args, "s:getWeight", &id))
|
||||
return NULL;
|
||||
if (self->m_image != NULL)
|
||||
// get weight
|
||||
weight = getImageMix(self)->getWeight(id);
|
||||
// return weight
|
||||
@@ -123,7 +125,9 @@ PyObject * setWeight (PyImage * self, PyObject * args)
|
||||
// get arguments
|
||||
char * id;
|
||||
short weight = 0;
|
||||
if (self->m_image != NULL && PyArg_ParseTuple(args, "sh", &id, &weight))
|
||||
if (!PyArg_ParseTuple(args, "sh:setWeight", &id, &weight))
|
||||
return NULL;
|
||||
if (self->m_image != NULL)
|
||||
// set weight
|
||||
if (!getImageMix(self)->setWeight(id, weight))
|
||||
{
|
||||
@@ -162,8 +166,13 @@ static PyGetSetDef imageMixGetSets[] =
|
||||
// define python type
|
||||
PyTypeObject ImageMixType =
|
||||
{
|
||||
PyObject_HEAD_INIT(NULL)
|
||||
#if (PY_VERSION_HEX >= 0x02060000)
|
||||
PyVarObject_HEAD_INIT(NULL, 0)
|
||||
#else
|
||||
/* python 2.5 and below */
|
||||
PyObject_HEAD_INIT( NULL ) /* required py macro */
|
||||
0, /*ob_size*/
|
||||
#endif
|
||||
"VideoTexture.ImageMix", /*tp_name*/
|
||||
sizeof(PyImage), /*tp_basicsize*/
|
||||
0, /*tp_itemsize*/
|
||||
|
||||
Reference in New Issue
Block a user