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 the flow editor, there is no way to know what value is being set in each input, without using some internal console.logs. It would be great if in the flow editor, when a data edge is attached between output/input, the value gets shown on the input node:
is there a way, from the outside of the engine, to subscribe to when a node's input gets updated? This way we could potentially display that value in the node.
The text was updated successfully, but these errors were encountered:
oveddan
changed the title
Flow editor - show values on nodes as they are updated
Flow editor - show values next to input nodes as they are updated
Nov 22, 2022
So you just need to figure out when to call this function. Technically it isn't very slow -- so you could, after every graph change, call this on every input socket? That would scale for at least a hundred or so nodes, and then eventually you'll have to be a bit smarter.
In the flow editor, there is no way to know what value is being set in each input, without using some internal console.logs. It would be great if in the flow editor, when a data edge is attached between output/input, the value gets shown on the input node:
is there a way, from the outside of the engine, to subscribe to when a node's input gets updated? This way we could potentially display that value in the node.
The text was updated successfully, but these errors were encountered: