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:
@@ -113,7 +113,10 @@ void Video_open (VideoBase * self, char * file, short captureID)
|
||||
PyObject * Video_play (PyImage * self)
|
||||
{ if (getVideo(self)->play()) Py_RETURN_TRUE; else Py_RETURN_FALSE; }
|
||||
|
||||
// stop video
|
||||
// pause video
|
||||
PyObject * Video_pause (PyImage * self)
|
||||
{ if (getVideo(self)->pause()) Py_RETURN_TRUE; else Py_RETURN_FALSE; }
|
||||
|
||||
PyObject * Video_stop (PyImage * self)
|
||||
{ if (getVideo(self)->stop()) Py_RETURN_TRUE; else Py_RETURN_FALSE; }
|
||||
|
||||
@@ -146,7 +149,7 @@ int Video_setRange (PyImage * self, PyObject * value, void * closure)
|
||||
|| !PyFloat_Check(PySequence_Fast_GET_ITEM(value, 0))
|
||||
|| !PyFloat_Check(PySequence_Fast_GET_ITEM(value, 1)))
|
||||
{
|
||||
PyErr_SetString(PyExc_TypeError, "The value must be a sequence of 2 longs");
|
||||
PyErr_SetString(PyExc_TypeError, "The value must be a sequence of 2 float");
|
||||
return -1;
|
||||
}
|
||||
// set range
|
||||
|
||||
Reference in New Issue
Block a user