You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my project I often have the names of inputs and outputs mentioned three times:
once in the constructor of a node class as InputPlug("inputName", self)
once in the wiring node_a.outputs["outputName"] >> node_b.inputs["inputName"]
and once in the override of the compute method: def compute(self, inputName)
At some point I will probably write a script or maybe a pycharm integration so that
changing the name in one place will replace all uses of that name as well.
The text was updated successfully, but these errors were encountered:
In my project I often have the names of inputs and outputs mentioned three times:
InputPlug("inputName", self)
node_a.outputs["outputName"] >> node_b.inputs["inputName"]
def compute(self, inputName)
At some point I will probably write a script or maybe a pycharm integration so that
changing the name in one place will replace all uses of that name as well.
The text was updated successfully, but these errors were encountered: