Reputation: 443
I have an selectOutput
block in which I would like agents of type Patient to continue through OutT if they have passed through a particular timeMeasureStart
block. After passing agent.timeMeasureStart
in the condition, I receive 'timeMeasureStart' cannot be resolved or is not a field.
Upvotes: 0
Views: 280
Reputation: 2213
Create a variable for your agent type Patient. Let's say you name it tmsTrue. Make the variable of type boolean
. In the On Enter
field of the timeMeasureStart
block write:
agent.tmsTrue = true;
Then set your select output condition as:
agent.tmsTrue == true
Of course make sure that the variable's initial value is set to false.
Upvotes: 1