-
Notifications
You must be signed in to change notification settings - Fork 36
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
For some reason, compound children of a compound locks up Maya, presumably there's an infinite loop somewhere.
import cmdx
node = cmdx.createNode("transform")
# This works
node.addAttr(
cmdx.Compound("parent", children=[
cmdx.Double("age"),
cmdx.Double("height")
])
)
# This does *not*
node.addAttr(
cmdx.Compound("parent", children=[
cmdx.Compound("child", children=[
cmdx.Double("age"),
cmdx.Double("height")
])
])
)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working