mischakolbe / node_calculator

Create Maya node-network by entering a math-formula.
67 stars 14 forks source link

Change .attrs to .attrs(index=None) #60

Open mischakolbe opened 6 years ago

mischakolbe commented 6 years ago

Using methods instead of properties would be a major improvement:

Biggest hurdle:

some_node.attrs() = 7 does NOT work! (can't assign to function call)

mischakolbe commented 6 years ago

Possible solution is the << (__lshift__(self, other)) operator.

I am literally re-creating PyMel, am I not...