[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [14659] trunk/blender/release/scripts/ wizard_curve2tree.py: wizard_curve2tree was opening FBX wiki docs.

Campbell Barton ideasman42 at gmail.com
Fri May 2 14:27:05 CEST 2008


Revision: 14659
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=14659
Author:   campbellbarton
Date:     2008-05-02 14:27:05 +0200 (Fri, 02 May 2008)

Log Message:
-----------
wizard_curve2tree was opening FBX wiki docs. leaf dupliface object was being offset each time the script ran.

Modified Paths:
--------------
    trunk/blender/release/scripts/wizard_curve2tree.py

Modified: trunk/blender/release/scripts/wizard_curve2tree.py
===================================================================
--- trunk/blender/release/scripts/wizard_curve2tree.py	2008-05-02 10:48:14 UTC (rev 14658)
+++ trunk/blender/release/scripts/wizard_curve2tree.py	2008-05-02 12:27:05 UTC (rev 14659)
@@ -3405,7 +3405,7 @@
 		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 @@
 		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
 	





More information about the Bf-blender-cvs mailing list