Triggercondition without waittrigger

Hi all,

How can you use triggercondition in python with the same functionality as waitsignal function in process modeling with the waittrigger option disabled.
Or where can I find documentation on the triggercondition function with all the possibilities?

That would be the condition(lambda: signal.Value == True) from vcScript.
-triggerCondition requires that a signal is triggered while the script is executing that function
-condition acts the same, but also continues script execution if the signal’s value is initially right. A signal connected to the script will trigger re-evaluating the condition.

1 Like

Ah perfect, that’s what I was looking for. Thanks alot!!