Dynamo player and sequence in which it runs

Hi @Christhian,

You’ve created what’s called a race condition by have two separate branches that are independent from one another. After the Select Objects node, the flow then branches to the Object.Geometry node and the ObjectExtensions.SetParameterValueByName. There is nothing telling the computer that it should execute one or the other first, so it’s essentially a “race” between the two. There is a high likelihood that this will lead to inconsistent results. What you need to do is add a simple gate so that you force the elevation parameter to be set before you get the geometry. This post should help.

4 Likes