From caa7566ee2e6e9c686c7eb6c8f65957dc594148c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 2 May 2008 12:27:05 +0000 Subject: [PATCH] wizard_curve2tree was opening FBX wiki docs. leaf dupliface object was being offset each time the script ran. --- release/scripts/wizard_curve2tree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/scripts/wizard_curve2tree.py b/release/scripts/wizard_curve2tree.py index 2dcda953a89..eb27f1ca0f5 100644 --- a/release/scripts/wizard_curve2tree.py +++ b/release/scripts/wizard_curve2tree.py @@ -3405,7 +3405,7 @@ def buildTree(ob_curve, single=False): if leaf_object: ob_leaf_dupliface.enableDupFaces = True ob_leaf_dupliface.enableDupFacesScale = True - ob_leaf_dupliface.makeParent([leaf_object]) + ob_leaf_dupliface.makeParent([leaf_object], 1) else: ob_leaf_dupliface.enableDupFaces = False @@ -3637,7 +3637,7 @@ def do_tree_generate(e,v): GLOBALS['non_bez_error'] = 0 def do_tree_help(e,v): - url = 'http://wiki.blender.org/index.php/Scripts/Manual/Export/autodesk_fbx' + url = 'http://wiki.blender.org/index.php/Scripts/Manual/Wizards/TreeFromCurves' print 'Trying to open web browser with documentation at this address...' print '\t' + url