* Fixed bug in BPY_interface.c (exppython):
Found that syntax errors in scripts were giving SIGSEGV, my mistake. * Added new helper type: rgbTuple. This is used to represent and deal with rgb color triplets in modules like Material and Lamp. Updated Lamp module to use it.
This commit is contained in:
@@ -46,7 +46,7 @@ void mesh_update(Mesh *mesh)
|
||||
|
||||
static void NMCol_dealloc(PyObject *self)
|
||||
{
|
||||
PyMem_DEL(self);
|
||||
PyMem_DEL(self); /* XXX PyObject_Del ?*/
|
||||
}
|
||||
|
||||
static C_NMCol *newcol (char r, char g, char b, char a)
|
||||
|
Reference in New Issue
Block a user