NodeGraphQt
NodeGraphQt copied to clipboard
Ability to set pipes' colors and width.
Right now, these attributes are hardcoded in to PipeEnum. It would be nice if we could use our own custom colors without forking the repo and editing the enums
Hi, Yup that is one of the things I have on mind but just haven't gout around to it yet. https://github.com/jchanvfx/NodeGraphQt/issues/252
Hi,
If that can help, i am changing my pipes color like this, with the default nodesgrapgqt:
for port in self.view.inputs: for pipe in port._pipes: pipe._color = (50, 50, 50)
There should be an equivalent for the width