Open mischakolbe opened 6 years ago
Using methods instead of properties would be a major improvement:
plusMinusNode.input3D[0].input3Dx
Biggest hurdle:
some_node.attrs() = 7 does NOT work! (can't assign to function call)
some_node.attrs() = 7
can't assign to function call
Possible solution is the << (__lshift__(self, other)) operator.
<<
__lshift__(self, other)
I am literally re-creating PyMel, am I not...
Using methods instead of properties would be a major improvement:
plusMinusNode.input3D[0].input3Dx
would be possible (set/getitem could be used for attribute definition).Biggest hurdle:
some_node.attrs() = 7
does NOT work! (can't assign to function call
)