Hello everybody!
I’d like to do the animation of a frame, so I use a simple bezier curve where I modify the points for the motion. I need a rectangular cross section which is not symmetric so I can’t use a Taper Object for this. Hence I decided to use the Dupliframe method, but for this I have to make duplicated surfaces real, join them and make the segments.
So I use:
new_ob=Blender.Object.New(‘Surf’,dupe_ob.name)
new_ob.shareFrom(dupe_ob)
new_ob.setMatrix(dupe_matrix)
Now I have the problem that all the datablocks are linked so I have to do “Make Single User”. How can I do this by python, or is there an easier way?
Thx merlinarach