NodeGraphQt icon indicating copy to clipboard operation
NodeGraphQt copied to clipboard

Ability to set pipes' colors and width.

Open somso2e opened this issue 1 year ago • 2 comments

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

somso2e avatar Aug 05 '23 07:08 somso2e

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

jchanvfx avatar Aug 06 '23 06:08 jchanvfx

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

Zelfior avatar Aug 16 '23 08:08 Zelfior