Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Combine curves
- from pymel.core import *
- sl = selected()
- curves = sl[:-1]
- masterCurve = sl[-1]
- parent(curves, masterCurve)
- for c in curves:
- makeIdentity(c,apply=1,t=1 ,r=1,s=1 ,n=0 ,pn=1)
- parent(c.getShape(), masterCurve,r=1,s=1)
- delete(c)
Advertisement
Add Comment
Please, Sign In to add comment