Hi Sam,
There is no easy way to select all the nurbs circles in a scenes as they
are normal nurbsCurve.
You can do if you didn't rename them
import maya.cmds as cmds
cmds.select(cmds.ls("nurbsCircle*", type="nurbsCurve"))
Greets,
Colas2014-10-17 18:00 GMT-04:00 <[email protected]>: > Hey yo, > > you know this command lists all objects of type nurbsCurve in a scene: > > selection=cmds.ls(type='nurbsCurve') > > does anyone know how to select specifically all nurbs circles in a scene? > I dont know what type a nurbs circle is. does anyone know? > > thanks alot, > Sam > > -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/518d0f64-8d55-4e4b-bb2f-508fda19755e%40googlegroups.com > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CABwp0vPGk4XsMtU12K3T3nNOx%2BvNyeUHvJC9t91PAcNKG4oypA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
