We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import maya.cmds as cmds j = cmds.joint() sph, _ = cmds.polySphere() print sph cmds.skinCluster( j, sph) cmds.select(sph) cmds.demBones(b=20, sf=0, ef=20, eb=j)
Traceback (most recent call last): File "", line 1, in File "", line 2, in demBones RuntimeError: Maya command error #
The text was updated successfully, but these errors were encountered:
i was also get this error, Are you solver it ?
Sorry, something went wrong.
parameter eb should be a list, it would work
No branches or pull requests
import maya.cmds as cmds
j = cmds.joint()
sph, _ = cmds.polySphere()
print sph
cmds.skinCluster( j, sph)
cmds.select(sph)
cmds.demBones(b=20, sf=0, ef=20, eb=j)
Traceback (most recent call last):
File "", line 1, in
File "", line 2, in demBones
RuntimeError: Maya command error #
The text was updated successfully, but these errors were encountered: