Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-05-02 16:27:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-05-02 16:27:05 +0400
commitcaa7566ee2e6e9c686c7eb6c8f65957dc594148c (patch)
tree5c7df4285716a97293fc99a126107ed1b7e4b2ba /release
parentac634f565aa8a5d086eaf9142f066b25c2720352 (diff)
wizard_curve2tree was opening FBX wiki docs. leaf dupliface object was being offset each time the script ran.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/wizard_curve2tree.py4
1 files 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