e955...@gmail.com
unread,Feb 25, 2015, 6:55:52 PM2/25/15Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to python_in...@googlegroups.com
Hey yo,
im trying to do multiple poly bridge commands over a large mesh. So specific edges need to be bridged with specific other edges.
The problem is i cant seem to just write a long list of seperate polyBridgeEdge command lines because each time the edges that are bridged become selected, making the next polyBridgeEdge command not work. Each time the selection needs to be cleared like this:
cmds.polyBridgeEdge( 'polySurface1.e[530]','polySurface1.e[138]',divisions=0 )
cmds.select( clear=True )
cmds.polyBridgeEdge( 'polySurface1.e[0]','polySurface1.e[5]',divisions=0 )
cmds.select( clear=True )
cmds.polyBridgeEdge( 'polySurface1.e[536]','polySurface1.e[185]',divisions=0 )
cmds.select( clear=True )
does anyone know if there is a way to execute the polyBridgeEdge command without any edges being selected. Removing all the cmds.select commands would really cleanup my script ;)
thanks alot for your help,
Sam