Is there a way to delay to go to the next node untill finish command

Is there a way to delay to go to the next node untill finish command in command line I use passthrough but the command finish after passthrough
because the nodes after the command depend on data from command

use a “gate” by using

[input,waitfor][0]

in a codeblock

1 Like

I use it but the drawing import (from command line) after this
is there a way to add time in second to go to the next node

You could try the time in python:

import time

time.sleep(IN[0])

OUT = True

3 Likes