Order of Operation

The graph is so small it’s hard to see what is going on, but it looks like process 1 relies on information from process 2 anyway? If you provide more information about what you’re trying to achieve it will be easier to comment.

However, there is a node in the Clockwork package called Passthrough, which takes two inputs: passThrough and waitFor. Even if passThrough is calculated first, the node will only execute and pass on that data once the waitFor input has been completed and therefore can be used to control the order of executions

In pure Designscript it is

[passthrough,waitfor][0];

So it won’t complete until waitFor is complete, but will only pass on passThrough because that’s the data at index 0

3 Likes