Hi all!

I was testing Maya Python API 2.0 and discover what I think is a bug:

import maya.api.OpenMaya as om
import maya.OpenMaya as OpenMaya

# *Create a cube*

mSelList = om.MSelectionList()
omSelList = OpenMaya.MSelectionList()

mSelList.add("pCu*")
mSelList.length()    # Result: 328L

omSelList.add("pCu*")
omSelList.length()    # Result: 2

I was just wondering how submit this to Maya's developers?

Any idea?

Thanks in advance!

Regards,

Dorian

-- 
view archives: http://groups.google.com/group/python_inside_maya
change your subscription settings: 
http://groups.google.com/group/python_inside_maya/subscribe

Reply via email to