From bc293ba7e105f7648cb7bfa12dd90588093973dd Mon Sep 17 00:00:00 2001 From: Stephen Swaney Date: Sun, 27 Nov 2005 01:42:46 +0000 Subject: [PATCH] patch #3475 for bug #2867 Object.makeParent with noninverse doesn't clear parentinv matrix Contributed by Stephane SOPPERA (soppera). Thanks! --- source/blender/python/api2_2x/Object.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/python/api2_2x/Object.c b/source/blender/python/api2_2x/Object.c index 619c8f0c53b..ae6b3ec89a4 100644 --- a/source/blender/python/api2_2x/Object.c +++ b/source/blender/python/api2_2x/Object.c @@ -1786,6 +1786,7 @@ static PyObject *internal_makeParent(Object *parent, PyObject *py_child, child->parent = parent; //py_obj_child = (BPy_Object *) py_child; if( noninverse == 1 ) { + Mat4One(child->parentinv); /* Parent inverse = unity */ child->loc[0] = 0.0; child->loc[1] = 0.0;