Removed debug prints.

This commit is contained in:
2014-06-27 16:11:30 +09:00
parent ea1f54d8f3
commit 1741df1e36
3 changed files with 0 additions and 9 deletions

View File

@@ -84,12 +84,10 @@ static PyObject *create_func(PyObject *self, PyObject *args)
PointerRNA dataptr;
RNA_id_pointer_create((ID*)PyLong_AsVoidPtr(pydata), &dataptr);
std::cout << "_cycles.create: dataptr " << PyLong_AsVoidPtr(pydata) << std::endl;
BL::BlendData data(dataptr);
PointerRNA sceneptr;
RNA_id_pointer_create((ID*)PyLong_AsVoidPtr(pyscene), &sceneptr);
std::cout << "_cycles.create: sceneptr " << PyLong_AsVoidPtr(pyscene) << std::endl;
BL::Scene scene(sceneptr);
PointerRNA regionptr;